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