This commit is contained in:
2025-07-17 13:46:22 -04:00
parent 3a9d52c513
commit 7674010155
9 changed files with 95 additions and 28 deletions

View File

@@ -2,8 +2,13 @@
#define FILE_H
#include "e.h"
#include <unistd.h>
error_t write(char *, char *, ...);
void printfn(char *, ...);
#define take(x, ...) \
dir(x, ##__VA_ARGS__); \
chdir(x);
error_t touch(char *, char *, ...);
error_t dir(char *, ...);
#endif