C语言库函数速查手册 、 Linux C 开发相关文档 、Linux C 函数手册
头文件 | 常用函数 |
---|---|
#include <stdlib.h> | exit()、abort()、malloc()、calloc()、realloc()、free()、getenv()、setenv()、atoi()、abs()、random() |
#include <stdio.h> | printf()、fprintf()、sprintf()、scanf()、fopen()、fread()、fwrite()、fclose() |
#include <unistd.h> | read()、write()、close()、chown()、chdir()、rmdir()、getcwd()、getuid()、getgid()、setuid()、setgid()、sethostname()、link()、unlink()、sysconf()、pathconf()、sleep()、fork()、daemon()、pipe()、system()、execve()、syscall() |
#include <string.h> | strcpy()、memcpy()、strncpy()、strcmp() |
#include <sys/socket.h> | socket()、setsockopt()、getsockopt()、bind()、accept()、connect()、send()、recv()、shutdown() |
#include <sys/epoll.h> | epoll_create()、epoll_ctl()、epoll_wait() |
#include <netdb.h> |