sofs19  0.1
FUSE based file system
grp_direntries.h
Go to the documentation of this file.
1 
10 #ifndef __SOFS19_DIRENTRIES_GROUP__
11 #define __SOFS19_DIRENTRIES_GROUP__
12 
13 #include <inttypes.h>
14 
15 namespace sofs19
16 {
17  uint32_t grpTraversePath(char *path);
18 
19  uint32_t grpGetDirEntry(int pih, const char *name);
20 
21  void grpAddDirEntry(int pih, const char *name, uint32_t cin);
22 
23  uint32_t grpDeleteDirEntry(int pih, const char *name);
24 
25  void grpRenameDirEntry(int pih, const char *name, const char *newName);
26 
27  bool grpCheckDirEmpty(int ih);
28 };
29 
30 #endif /* __SOFS19_DIRENTRIES_GROUP__ */