mirror of
https://github.com/NohamR/knowledge-kit.git
synced 2026-05-25 04:17:17 +00:00
9 lines
214 B
Markdown
9 lines
214 B
Markdown
# 对于”文件“的新认识
|
||
|
||
```
|
||
int open(const char* pathname,int 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);
|
||
```
|