1 /** \file file.h 2 * \brief Header: File and directory operation routines 3 */ 4 5 #ifndef MC__FILENOT_H 6 #define MC__FILENOT_H 7 8 #include "lib/global.h" 9 10 /*** typedefs(not structures) and defined constants **********************************************/ 11 12 /*** enums ***************************************************************************************/ 13 14 /*** structures declarations (and typedefs of structures)*****************************************/ 15 16 /*** global variables defined in .c file *********************************************************/ 17 18 /*** declarations of public functions ************************************************************/ 19 20 /* Misc Unix functions */ 21 int my_mkdir (const vfs_path_t * vpath, mode_t mode); 22 int my_rmdir (const char *path); 23 24 /*** inline functions ****************************************************************************/ 25 26 #endif /* MC__FILE_H */