字符测试篇
isalnum
isalpha
isascii
iscntrl
isdigit
isgraphis
islower
isprint
isspace
ispunct
isupper
isxdigit

字符串转换篇
atof
atoi
atol
gcvt
strtod
strtol
strtoul
toascii
tolower
toupper

内存控制篇
calloc
free
getpagesize
malloc
mmap
munmap

日期时间篇
asctime
ctime
gettimeofday
gmtime
localtime
mktime
settimeofday
time

内存及字符串操作篇
bcmp
bcopy
bzero
index
memccpy
memchr
memcmp
memcpy
memmove
memset
rindex
strcasecmp
strcat
strchr
strcmp
strcoll
strcpy
strcspn
strdup
strlen
strncasecmp
strncat
strncpy
strpbrk
strrchr
strspn
strstr
strtok

常用数学函数篇
abs
acos
asin
atan
atan2
ceil
cos
cosh
exp
frexp
ldexp
log
log10
pow
sin
sinh
sqrt
tan
tanh

用户组篇
endgrent
endpwent
endutent
fgetgrent
fgetpwent
getegid
geteuid
getgid
getgrent
getgrgid
getgrnam
getgroups
getpw
getpwent
getpwnam
getpwuid
getuid
getutent
getutid
getutline
initgroups
pututline
seteuid
setfsgid
setfsuid
setgid
setgrent
setgroups
setpwent
setregid
setreuid
setuid
setutent
utmpname

数据结构及算法篇
crypt
bsearch
lfind
lsearch
qsort
rand
srand

文件操作篇
close
creat
dup
dup2
fcntl
flock
fsync
lseek
mkstemp
open
read
sync
write

文件内容操作篇
clearerr
fclose
fdopen
feof
fflush
fgetc
fgets
fileno
fopen
fputc
fputs
fread
freopen
fseek
ftell
fwrite
getc
getchar
gets
mktemp
putc
putchar
rewind
setbuf
setbuffer
setlinebuf
setvbuf
ungetc

进程操作篇
atexit
execl
execlp
execv
execve
execvp
exit
_exit
vfork
getpgid
getpgrp
getpid
getppid
getpriority
nice
on_exit
setpgid
setpgrp
setpriority
system
wait
waitpid
fprintf
fscanf
printf
sacnf
sprintf
sscanf
vfprintf
vfscanf
vprintf
vscanf
vsprintf
vsscanf

文件权限控制篇
access
alphasort
chdir
chmod
chown
chroot
closedir
fchdir
fchmod
fchown
fstat
ftruncate
getcwd
link
lstat
opendir
readdir
readlink
remove
rename
rewinddir
seekdir
stat
symlink
telldir
truncate
umask
unlink
utime
utimes

信号处理篇
alarm
kill
pause
sigaction
sigaddset
sigdelset
sigemptyset
sigfillset
sigismember
signal
sigpending
sigprocmask
sleep
ferror
perror
strerror
mkfifo
pclose
pipe
popen

接口处理篇
accept
bind
connect
endprotoent
endservent
getsockopt
htonl
htons
inet_addr
inet_aton
inet_ntoa
listen
ntohl
ntohs
recv
recvfrom
recvmsg
send
sendmsg
sendto
setprotoent
setservent
setsockopt
shutdown
socket

环境变量篇
getenv
putenv
setenv

终端控制篇
getopt
isatty
select
ttyname

linux常用C函数目录的更多相关文章

  1. Linux常用系统函数

    Linux常用系统函数 一.进程控制 fork 创建一个新进程clone 按指定条件创建子进程execve 运行可执行文件exit 中止进程_exit 立即中止当前进程getdtablesize 进程 ...

  2. Linux常用命令,目录解析,思维导图

    文章目录 下载地址 Linux常用命令 linux系统常用快捷键及符号命令 Linux常用Shell命令 Linux系统目录解析 Shell Vi全文本编辑器 Linux安装软件 Linux脚本编制编 ...

  3. [Linux]常用命令与目录全拼

    命令缩写: ls:list(列出目录内容)cd:Change Directory(改变目录)su:switch user 切换用户rpm:redhat package manager 红帽子打包管理器 ...

  4. linux常用命令之--目录与文件的操作命令

    1.linux的目录与文件的增.删.改.复制 pwd:用于显示当前所在的目录 ls:用于显示指定目录下的内容 其命令格式如下: ls [-option] [file] 常用参数: -l:显示文件和目录 ...

  5. day04 - linux常用命令、目录说明以及ubuntu解锁root用户,安装tree命令

    echo abcdefg >> aa.txt //向aa.txt文件末尾追加 abcdefg 字符串 1 基础命令: clear //清屏 whoami //查看当前所登录的用户 who ...

  6. Linux常用C函数---字符串转换篇

    函数讲解部分参考http://net.pku.edu.cn/~yhf/linux_c/ atof(将字符串转换成浮点型数) 相关函数 atoi,atol,strtod,strtol,strtoul 表 ...

  7. Linux常用C函数---字符测试篇

    函数讲解部分参考http://net.pku.edu.cn/~yhf/linux_c/ isalnum(测试字符是否为英文或数字) 相关函数 isalpha,isdigit,islower,isupp ...

  8. Linux常用C函数---内存控制篇

    函数讲解部分参考http://net.pku.edu.cn/~yhf/linux_c/ calloc(配置内存空间) 相关函数 malloc,free,realloc,brk 表头文件 #includ ...

  9. Linux常用C函数-接口处理篇(网络通信函数)

    接口处理篇accept,bind,connect,endprotoent,endservent,getsockopt,htonl,htons,inet_addr,inet_aton,inet_ntoa ...

随机推荐

  1. 【BZOJ】1152: [CTSC2006]歌唱王国Singleland

    题解 读错题了,是最后留下一个牛人首长歌颂他,和其他人没有关系,t就相当于数据组数 结论题,具体可看 https://www.zhihu.com/question/59895916/answer/19 ...

  2. Python全栈开发之目录

    基础篇 Python全栈开发之1.输入输出与流程控制 Python全栈开发之2.运算符与基本数据结构 Python全栈开发之3.数据类型set补充.深浅拷贝与函数 Python全栈开发之4.内置函数. ...

  3. 2017 ACM Amman Collegiate Programming Contest 题解

    [题目链接] A - Watching TV 模拟.统计一下哪个数字最多即可. #include <bits/stdc++.h> using namespace std; const in ...

  4. Adobe Photoshop CC 2017-18.0安装教程

    Adobe Photoshop CC 2017-18.0安装教程 注:下载链接在文章后面 第一步:首先请将电脑的网络断开,很简单:禁用本地连接或者拔掉网线,这样就可以免除登录Creative Clou ...

  5. CSU - 2062 Z‘s Array

    Description Z likes to play with array. One day his teacher gave him an array of n elements, and ask ...

  6. python 列表的浅拷贝和深拷贝

    转自:https://www.cnblogs.com/laolibk/p/7821369.html 浅拷贝 shallow copy 和深拷贝 deep copy list.copy() 浅拷贝:复制 ...

  7. fiddler 手机装证书

    1: 打开浏览器的地址 输入fiddler 右上方的地址 172.21.14.197:8888 2: 然后点击页面里的 FiddlerRoot certificate 3: 最后验证下   iOS 1 ...

  8. BZOJ 2115: [Wc2011] Xor 线性基 dfs

    https://www.lydsy.com/JudgeOnline/problem.php?id=2115 每一条从1到n的道路都可以表示为一条从1到n的道路异或若干个环的异或值. 那么把全部的环丢到 ...

  9. 【20181102T1】优美的序列【二分+ST表】

    题面 [正解] 相当于是 \(GCD_{i=L}^{R} A_i = min_{i=L}^{R} \{A_i\}\) 然后GCD可以用ST表实现\(O(log A_i)\)查询 并且GCD是递减的,所 ...

  10. BZOJ.3771.Triple(母函数 FFT 容斥)

    题目链接 \(Description\) 有\(n\)个物品(斧头),每个物品价值不同且只有一件,问取出一件.两件.三件物品,所有可能得到的价值和及其方案数.\((a,b),(b,a)\)算作一种方案 ...