Files
yait/core/file.h
2025-07-17 13:46:22 -04:00

15 lines
312 B
C

#ifndef FILE_H
#define FILE_H
#include "e.h"
#include <unistd.h>
#define take(x, ...) \
dir(x, ##__VA_ARGS__); \
chdir(x);
error_t touch(char *, char *, ...);
error_t dir(char *, ...);
#endif