| 12 | #include <sys/user.h> |
| 13 | |
| 14 | void create_file(const char* filename, const char* content) { |
| 15 | int fd = open(filename, O_RDWR|O_CREAT, S_IRUSR|S_IWUSR); // create an empty file |
| 16 | assert(fd >= 0); |
| 17 | write(fd, content, strlen(content)); |
| 18 | close(fd); |
| 19 | } |
| 20 | |
| 21 | int main() { |
| 22 | struct stat st; |