This commit is contained in:
2025-11-09 21:55:07 -05:00
parent 561753df41
commit bfefb223f1
18 changed files with 546 additions and 5 deletions

8
file.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef FILE_H_
#define FILE_H_
int ffwrite(char *path, char *fmt, ...);
int fmkdir(char *path, ...);
int ffexist(char *fmt, ...);
#endif /* FILE_H_ */