9 lines
155 B
C
9 lines
155 B
C
#ifndef FILE_H_
|
|
#define FILE_H_
|
|
|
|
int ffwrite(char *path, char *fmt, ...);
|
|
int fmkdir(char *path, ...);
|
|
int ffexist(char *fmt, ...);
|
|
|
|
#endif /* FILE_H_ */
|