sofs19  0.1
FUSE based file system
bin_direntries.h
Go to the documentation of this file.
1 
11 #ifndef __SOFS19_DIRENTRIES_BIN__
12 #define __SOFS19_DIRENTRIES_BIN__
13 
14 #include <inttypes.h>
15 
16 namespace sofs19
17 {
18  uint32_t binTraversePath(char *path);
19 
20  uint32_t binGetDirEntry(int pih, const char *name);
21 
22  void binAddDirEntry(int pih, const char *name, uint32_t cin);
23 
24  uint32_t binDeleteDirEntry(int pih, const char *name);
25 
26  void binRenameDirEntry(int pih, const char *name, const char *newName);
27 
28  bool binCheckDirEmpty(int ih);
29 };
30 
31 #endif /* __SOFS19_DIRENTRIES_BIN__ */