Files
knowledge-kit/Chapter7 - Geek Talk/7.26.md
2024-02-23 15:58:55 +08:00

9 lines
214 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 对于”文件“的新认识
```
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);
```