This commit is contained in:
2025-07-18 15:44:30 -04:00
parent cf26cdc4b9
commit 50e964d3a0
6 changed files with 71 additions and 65 deletions

View File

@@ -1,12 +1,11 @@
#ifndef FILE_H
#define FILE_H
#include "e.h"
#include <unistd.h>
error_t take(const char *dirname);
int take(const char *dirname);
error_t touch(char *, char *, ...);
error_t dir(char *, ...);
int touch(char *, char *, ...);
int dir(char *, ...);
#endif