update: image source

This commit is contained in:
杭城小刘
2024-02-23 15:58:55 +08:00
parent fb51939f76
commit 6e47061735
22 changed files with 783 additions and 61 deletions

View File

@@ -0,0 +1,8 @@
# 对于”文件“的新认识
```
int open(const char* pathnameint flags);
ssize_t read(int fd void *buf size_t count);
ssize_t write(int fd const void *buf size_t count);
int close(int fd);
```