material/c++/linux/linux.h

64 lines
1.8 KiB
C
Raw Normal View History

2024-10-27 09:23:50 +00:00
linux系统头文件
1. **`stdio.h`** - `printf``scanf``fopen``fclose`
2. **`stdlib.h`** - `malloc``free``rand``exit`
3. **`string.h`** - `strcpy``strlen``strcat`
4. **`errno.h`** -
5. **`limits.h`** -
6. **`fcntl.h`** -
7. **`sys/types.h`** - `size_t``off_t`
8. **`sys/stat.h`** -
9. **`sys/time.h`** -
10. **`sys/resource.h`** -
11. **`sys/wait.h`** -
12. **`sys/ioctl.h`** -
13. **`sys/socket.h`** -
14. **`netinet/in.h`** -
15. **`arpa/inet.h`** -
16. **`netdb.h`** -
17. **`signal.h`** -
18. **`setjmp.h`** -
19. **`time.h`** -
20. **`pthread.h`** - POSIX 线
21. **`dlfcn.h`** -
22. **`dirent.h`** -
23. **`grp.h`** -
24. **`pwd.h`** -
25. **`termios.h`** -
26. **`sys/mman.h`** -
27. **`sys/shm.h`** -
28. **`sys/ipc.h`** -
29. **`sys/msg.h`** -
30. **`sys/sem.h`** -
C