版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
最为完整C与C++的头文件大全
C/C++头文件一览
C、传统C++
#include<assert.h>〃设定插入点#include<ctype.h>〃字符处理#include
<errno.h>〃定义错误码ttinclude<float.h>〃浮点数处理
ttinclude<fstream.h>//文件输入/输出ttinclude<iomanip.h>〃参数化输入/输
出#include<iostream.h>〃数据流输入/输出
#include<limits.h>//定义各种数据类型最值常量ttinclude<locale.h>〃定义本
地化函数/include<math.h>〃定义数学函数
ttinclude<stdio.h>〃定义输入/输出函数
ttinclude<stdlib.h>//定义杂项函数及内存分配函数ttinclude<string.h>〃字符
串处理
ttinclude<strstrea.h>〃基于数组的输入/输出#include<time.h>//定义关于时
间的函数
ttinclude<wchar.h>〃宽字符处理及输入/输出ttinclude<wctype.h>〃宽字符分类
标准C语言头文件
ISOC标准定义的头文件(24项)<assert.h>验证程序断言<errno.h>出错码
<complex.h>支持复数算术运算
<fenv.h>浮点环境
<ctype.h>字符类型
<float.h>浮点常量<limits.h>实现常量
<inttypes.h>整型格式转换<locale.h>局部类别<signal.h>信号
<iso646.h>替代关系操作符宏
<math.h>数学常量
<setjmp.h>非局部goto
<stdbool.h>布尔类型和值
<stdarg.h>可变参数表
<stddef.h>标准定义<stdint.h>整型
<stdio.h>标准I/O库
<tgmath.h>通用类型数学宏
<stdlib.h>实用程序库函数<time.h>时间和日期
<string.h>字符串操作
<wchar.h>宽字符支持<wctype.h>宽字符分类和映射支持
POSIX标准定义的必须的头文件(26项)<dirent.h>目录项
<fcntl.h>文件控制
<fnmatch.h>文件名匹配类型<netdb.h>网络数据库操作
<tar.h>tar归档值<utime.h>文件时间
<glob.h>路径名模式匹配类型<grp.h>组文件<pwd.h>口令文件
<regex.h>正则表达式<unistd.h>符号常量
<termios.h>终端I/O
<wordexp.h>字扩展类型<arpa/inet.h>Internet定义<net/if.h>套接字本地接口
<netinet/in.h>Internet地址族<netinet/top.h>传输控制协议<sys/mman.h>内存
管理声明<sys/select.h>select函数<sys/socket.h>套接字接口<sys/times.h>进
程时间<sys/utsname.h》系统名
<sys/stat.h>文件状态<sys/un.h>UNIX域套接字定义
<sys/types.h>基本系统数据类型<sys/wait.h>进程控制
POSIX标准定义的XSI扩展头文件(26项)<cpio.h>cpio归档值
<dlfcn.h>动态链接
<fmtmsg.h>消息显示结构<ftw.h>文件树漫游〈iconv.h>代码集转换实用程序
<langinfo.h>语言信息常量<ndbm.h>数据库操作<search.h>搜索表<ucontext.h>
用户上下文<sys/ipc.h>IPC
<sys/sem.h>信号量<sys/time.h>时间类型
<libgen.h>模式匹配函数定义<monetary.h>货币类型<nltypes.h>消息类别
<strings.h>字符串操作<ulimit.h>用户限制<sys/msg.h>消息队列<sys/shm.h>共
享存储
<poll.h>轮询函数
<syslog.h>系统出错日志记录<utmpx.h>用户帐户数据库
<sys/resource.h>资源操作
<sys/statvfs.h>文件系统信息<sys/timeb.h>附加的时间<sys/uio.h>矢量I/O操
作
POSIX标准定义的可选头文件(8项)<aio.h>异步I/O
<mqueue.h>消息队列
<sched.h>执行调度
<semaphore.h>信号量
<stropts.h>XSISTREAMS接口
<trace.h>时间跟踪
<pthread.h>线程
<spawn.h>实时spawn接口标准C++语言头文件(54个其中16个用于构建STL,3个为
附加非必须)
<algorithm>STL通用算法<cctype>字符处理
<bitset>STL位集容器<cerrno>错误码
<cassert>用于在程序运行时执行断言<cfloat>用于测试浮点类型属性
<ciso646>IS0646变体字符集<climits>测试整数类型属性<cmath>
数学函数
<complex>复数类
<clocale>本地化函数
<csetjmp>执行非内部的goto语句
<csignal>信号<cstdarg>访问参数数量变化的函数<cstdlib>杂项函数及内存分配
<cstddef>用于定义实用的类型和宏<cstring>字符串
<cwctype>宽字符分类
<cstdio>输入/输出<ctime>
时间
<cwchar>宽字符处理及输入/输出
<deque>STL双端队列容器<functional>STL函数对象
<exception>异常处理类
<fstream>文件流
<iomanip>参数化输入/输出<iostream>数据流输入/输出
<ios>基本输入/输出支持<istream>基本输入流
<iosfwd>输入/输出前置声明<iterator>遍历序列的类<locale>国际化支持
<limits>各种数据类型最值常量<map>STL映射容器
<list>STL线性列表容器<memory>专用内存分配器<ostream>基本输出流
<sstream>基于字符串的流
<streambuf>iostream的缓冲区类
<new>基本内存分配和释放<queue>
STL队列容器
<numeric>通用的数字操作
<set>STL集合容器
<stack>STL堆栈容器<string>字符串类
<stdexcept>标准异常类
<strstream>非内存字符序列的流类<typeinfo>运行时类型标识<valarray>支持值
数组的类和模版类<vector>STL动态数组容器
<utility>STL通用模板类
标准C++附加的头文件(3个)非必须
<hashmap>
<hashset>
<slist>TheStandardC++libraryconsistsof51requiredheaders.This
implementationalsoincludesthreeadditional
headers,<hash_map>,<hash_set>,and<slist>,notrequiredbytheC++Standard,
foratotalof54headers.Ofthese54headers,16constitutetheStandard
TemplateLibrary,orSTL.Theseareindicatedbelowwiththenotation
<algorithm>--(STL)fordefiningnumeroustemplatesthatimplementuseful
algorithms
<bitset>--fordefiningatemplateclassthatadministerssetsofbits
<complex>一-fordefiningatemplateclassthatsupportscomplexarithmetic
<deque>—(STL)fordefiningatemplateclassthatimplementsadeque
container
<exception>-fordefiningseveralfunctionsthatcontrolexception
handling
<fstream>-fordefiningseveraliostreamstemplateclassesthatmanipulate
exteralfiles<functional>--(STL)fordefiningseveraltemplatesthathelp
constructpredicatesforthetemplatesdefinedin<algorithm>and<numeric>
<hash_map>
<hash_set>
<ios>--(STL)fordefiningtemplateclassesthatimplementhashed
associativecontainers--(STL)fordefiningtemplateclassesthatimplement
hashedassociativecontainersthatmapkeystovalues<iomanip>一for
declaringseveraliostreamsmanipulatorsthattakeanargument-一fordefining
thetemplateclassthatservesasthebaseformanyiostreamsclasses<iosfwd>
-一fordeclaringseveraliostreamstemplateclassesbeforetheyare
necessarilydefined
<iostream>
<iterator>
<list>-fordeclaringtheiostreamsobjectsthatmanipulatethestandard
streams-(STL)fordefiningseveraltemplatesthathelpdefineand
manipulateiterators-(STL)fordefiningatemplateclassthatimplementsa
doublylinkedlistcontainer<istream>-fordefiningthetemplateclassthat
performsextractions<limits>-fortestingnumerictypeproperties<locale>
-fordefiningseveralclassesandtemplatesthatcontrol
locale-specificbehavior,asintheiostreamsclasses
<map>--(STL)fordefiningtemplateclassesthatimplementassociative
containersthatmapkeystovalues
<memory>--(STL)fordefiningseveraltemplatesthatallocateandfree
storageforvariouscontainerclasses
<new>-fordeclaringseveralfunctionsthatallocateandfreestorage
<numeric>--(STL)fordefiningseveraltemplatesthatimplementuseful
numericfunctions<ostream>-fordefiningthetemplateclassthatperforms
insertions
<queue>—(STL)fordefiningatemplateclassthatimplementsaqueue
container
<set>--(STL)fordefiningtemplateclassesthatimplementassociative
containers
<slist>--(STL)fordefiningatemplateclassthatimplementsasingly
linkedlistcontainer<sstream>--fordefiningseveraliostreamstemplate
classesthatmanipulatestringcontainers<stack>--(STL)fordefininga
templateclassthatimplementsastackcontainer
<stdexcept>-fordefiningseveralclassesusefulforreportingexceptions
<streambuf>-fordefiningtemplateclassesthatbufferiostreams
operations
<string>--fordefiningatemplateclassthatimplementsastringcontainer
<strstream>—fordefiningseveraliostreamsclassesthatmanipulatein
memorycharactersequences
-fordefiningclasstypeinfo,theresultofthetypeidoperator
--fordefiningseveralclassesandtemplateclassesthatsupportvalue-
oriented<typeinfo><valarray>
<utility>--(STL)fordefiningseveraltemplatesofgeneralutilityarrays
<vector>--(STL)fordefiningatemplateclassthatimplementsavector
container新的C标准库
<cassert>-forenforcingassertionswhenfunctionsexecute
<cctype>-一forclassifyingcharacters
<cerrno>--fortestingerrorcodesreportedbylibraryfunctions
<cfloat>-fortestingfloating-pointtypeproperties
<ciso646>-forprogramminginISO646variantcharactersets
<climits>--fortestingintegertypeproperties
<clocale>-foradaptingtodifferentculturalconventions
<cmath>-forcomputingcommonmathematicalfunctions
<csetjmp>一-forexecutingnonlocalgotostatements
<csignal>-forcontrollingvariousexceptionalconditions
<cstdarg>-foraccessingavaryingnumberofarguments
<cstddef>一fordefiningseveralusefultypesandmacros
<cstdio>--forperforminginputandoutput
<cstdlib>-forperformingavarietyofoperations
<cstring>一formanipulatingseveralkindsofstrings
<ctime>--forconvertingbetweenvarioustimeanddateformats
<cwchar>-formanipulatingwidestreamsandseveralkindsofstrings
<cwctype>-forclassifyingwidecharacters
旧的C标准库
<assert.h>--forenforcingassertionswhenfunctionsexecute
<ctype.h>-forclassifyingcharacters
<errno.h>一fortestingerrorcodesreportedbylibraryfunctions
<float.h>-fortestingfloating-pointtypeproperties
<iso646.h>
<limits.h>
<locale.h>
<setjmp.h>
<signal.h>
<stdarg.h>
<stddef.h>
<stdlib.h>
<string.h>一forprogramminginISO646variantcharactersets一-for
testingintegertypeproperties-一foradaptingtodifferentcultural
conventions--forexecutingnonlocalgotostatements--forcontrolling
variousexceptionalconditions-foraccessingavaryingnumberofarguments
-fordefiningseveralusefultypesandmacros-forperformingavarietyof
operations-formanipulatingseveralkindsofstrings<math.h>-for
computingcommonmathematicalfunctions<stdio.h>-forperforminginputand
output
<time.h>—forconvertingbetweenvarioustimeanddateformats
<wchar.h>一一formanipulatingwidestreamsandseveralkindsofstrings
<wctype.h>
Finally,inthisimplementation,theStandardC++libraryalsoincludes
severalheadersforcompatibilitywithtraditionalC++libraries:
<fstream.h>-fordefiningseveraliostreamstemplateclassesthat
manipulateexteralfiles<iomanip.h>-fordeclaringseveraliostreams
manipulatorsthattakeanargument
<iostream.h>—fordeclaringtheiostreamsobjectsthatmanipulatethe
standardstreams<new.h>-fordeclaringseveralfunctionsthatallocateand
freestorage
<stl.h>一-fordeclaringseveraltemplateclassesthataidmigrationfrom
olderversionsoftheStandardTemplateLibrary-forclassifyingwide
characters
//////////////////////////////////////////////////////////////////////////
标准C++(同上的不再注释)#include<algorithm>//STL通用算法
#include<bitset>//STL位集容器
ttinclude<cctype>
ttinclude<cerrno>
^include<clocale>
#include<cmath>
#include<complex>〃复数类
#include<cstdio>
ttinclude<cstdlib>
itinclude<cstring>
Sinclude<ctime>
ttinclude<deque>//STL双端队列容器
#include<exception>〃异常处理类
ttinclude<fstream>
itinclude<functional>//STL定义运算函数(代替运算符)
#include<limits>
itinclude<list>//STL线性列表容器
#include<map>//STL映射容器
ttinclude<iomanip>
ttinclude<ios>//基本输入/输出支持
itinclude<iosfwd>〃输入/输出系统使用的前置声明
ttinclude<iostream>
#include<istream>〃基本输入流
ttinclude<ostream>〃基本输出流
#include<queue>//STL队列容器
ttinclude<set>//STL集合容器
ttinclude<sstream>〃基于字符串的流
ttinclude<stack>//STL堆栈容器
#include<stdexcept>〃标准异常类
#include<strcambuf>〃底层输入/输出支持
ftinclude<string>〃字符串类
ttinclude<utility>//STL通用模板类
ftinclude<vector>//STL动态数组容器
ttinclude<cwchar>
#include<cwctype>
usingnamespacestd;
//////////////////////////////////////////////////////////////////////////
C99增加
Jtinclude<complex.h>//复数处理
ttinclude<fenv.h>〃浮点环境
#include<inttypes.h>〃整数格式转换
ttinclude<stdbool.h>〃布尔环境
ttinclude<stdint.h>//整型环境
ttinclude<tgmath.h>〃通用类型数学宏
C头文件大全
--------------------------------------------------------------------分类函数,所在
函数库为ctype.h
intisalpha(intch)若ch是字母('A'Z','a'z')返回非0值,否则返回0
intisalnum(intch)若ch是字母(‘A',Z','a'z')或数字('O'9')返回非0值,
否则返回0
intisascii(intch)若ch是字符(ASCII码中的0T27)返回非0值,否则返回Oint
iscntrl(intch)若ch是作废字符(0x7F)或普通控制字符(OxOO-OxIF)返回非0值,否则
返回0
intisdigit(intch)若ch是数字CO'9')返回非0值,否则返回0
intisgraph(intch)若ch是可打印字符(不含空格)(0x21-0x7E)返回非0值,否则返
回0
intislower(intch)若ch是小写字母('a'z')返回非0值,否则返回0
intisprint(intch)若ch是可打印字符(含空格)(0x20-0x7E)返回非0值,否则返回0
intispunct(intch)若ch是标点字符(OxOO-OxlF)返回非0值,否则返回0
intisspace(intch)若ch是空格('’),水平制表符('\t'),回车符('\r'),走纸换行
('\f'),垂直制表符('\v'),换行符('\n')返回非0值,否则返回0
intisupper(intch)若ch是大写字母(‘A'」Z')返回非0值,否则返回0
intisxdigit(intch)若ch是16进制数('0'-'9,"'-'卜,"'-'£')返回非0值,否
则返回0
inttolower(intch)若ch是大写字母(‘A'」Z')返回相应的小写字母('a'z')
inttoupper(intch)若ch是小写字母('a'-'z')返回相应的大写字母('A'-'Z')
--------------------------------------------------------------------数学函数,所在
函数库为math,h、stdlib.h>string.h>float,h
intabs(inti)返回整型参数i的绝对值
doublecabs(structcomplexznum)返回复数znum的绝对值
doublefabs(doublex)返回双精度参数x的绝对值
longlabs(longn)返回长整型参数n的绝对值
doubleexp(doublex)返回指数函数ex的值
doublefrexp(doublevalue,int*eptr)返回value=x*2n中x的值,n存贮在eptr中
doubleIdexp(doublevalue,intexp);返回value*2exp的值
doublelog(doublex)返回logex的值
doubleloglO(doublex)返回loglOx的值
doublepow(doublex,doubley)返回xy的值
doublepowlO(intp)返回lOp的值
doublesqrt(doublex)返回+Jx的值
doubleacos(doublex)返回x的反余弦cosT(x)值,x为弧度
doubleasin(doublex)返回x的反正弦sinT(x)值,x为弧度
doubleatan(doublex)返回x的反正切tan-l(x)值,x为弧度
doubleatan2(doubley,doublex)返回y/x的反正切tanT(x)值,y的x为弧度
doublecos(doublex)返回x的余弦cos(x)值,x为弧度
doublesin(doublex)返回x的正弦sin(x)值,x为弧度
doubletan(doublex)返回x的正切tan(x)值,x为弧度
doublecosh(doublex)返回x的双曲余弦cosh(x)值,x为弧度
doublesinh(doublex)返回x的双曲正弦sinh(x)值,x为弧度
doubletanh(doublex)返回x的双曲正切tanh(x)值,x为弧度
doublehypot(doublex,doubley)返回直角三角形斜边的长度(z),x和y为直角边的
长度,z2=x2+y2doubleceil(doublex)返回不小于x的最小整数
doublefloor(doublex)返回不大于x的最大整数
voidsrand(unsignedseed)初始化随机数发生器
intrand()产生一个随机数并返回这个数
doublepoly(doublex,intn,doublec[])从参数产生一个多项式
doublemodf(doublevalue,double*iptr)将双精度数value分解成尾数和阶
doublefmod(doublex,doubley)返回x/y的余数
doublefrexp(doublevalue,int*eptr)将双精度数value分成尾数和阶
doubleatof(char*nptr)将字符串nptr转换成浮点数并返回这个浮点数
doubleatoi(char*nptr)将字符串nptr转换成整数并返回这个整数
doubleatol(char*nptr)将字符串nptr转换成长整数并返回这个整数
char*ecvt(doublevalue,intndigit,int*decpt,int*sign)将浮点数value转换
成字符串并返回该字符串char*fcvt(doublevalue,intndigit,int*decpt,int*sign)
将浮点数value转换成字符串并返回该字符串
char*gcvt(doublevalue,intndigit,char*buf)将数value转换成字符串并存于
buf中,并返回buf的指针
char*ultoa(unsignedlongvalue,char*string,intradix)将无符号整型数value
转换成字符串并返回该字符串,radix为转换时所用基数
char*ltoa(longvalue,char*string,intradix)将长整型数value转换成字符串并
返回该字符串,radix为转换时所用基数
char*itoa(intvalue,char*string,intradix)将整数value转换成字符串存入
string,radix为转换时所用基数doubleatof(char*nptr)将字符串nptr转换成双精度
数,并返回这个数,错误返回0
intatoi(char*nptr)将字符串nptr转换成整型数,并返回这个数,错误返回0
longatol(char*nptr)将字符串nptr转换成长整型数,并返回这个数,错误返回0
doublestrtod(char*str,char**endptr)将字符串str转换成双精度数,并返回这个
数,
longstrtol(char*str,char**endptr,intbase)将字符串str转换成长整型数,并
返回这个数,
intmatherr(structexception*e)用户修改数学错误返回信息函数(没有必要使用)
double_matherr(_mexcepwhy,char*fun,double*arglp,double*arg2p,double
retval)由户修改数杀错误返回信息函数(没有必要使用)
unsignedint_clear87()清除浮点状态字并返回原来的浮点状态
void_fpreset()重新初使化浮点数学程序包
unsignedint_status87()返回浮点状态字
■目录函数,所在
函数库为dir.h、dos.h
intchdir(char*path)使指定的目录path(如:"C:\\WPS〃)变成当前的工作目录,成
功返回0
intfindfirst(char*pathname,structffblk*ffblk,intattrib)查找指定的文件,
成功返回0
pathname为指定的目录名和文件名,如〃C:\\WPS\\TX丁
ffblk为指定的保存文件信息的一个结构,定义如下:
structffblk
charff_reserved[21];|
charff_attrib;|
intff_ftime;|
intff_fdate;|
longfffsize;|
charff_name[13];|
attrib为文件属性,由以下字符代表
IFA_RDONLY只读文件|FA_LABEL卷标号|
IFA_HIDDEN隐藏文件|FADIREC目录|
IFA_SYSTEM系统文件|FA_ARCH档案|
例:
structffblkff;
findfirst(〃awps〃,&ff,FA_RDONLY);
intfindnext(structffblk*ffblk)取匹配finddirst的文件,成功返回0
voidfumerge(char*path,char*drive,char*dir,char*name,char*ext)
此函数通过盘符drive(C:、A:等),路径dir(\TC、\BC\LIB等),
文件名name(TC、WPS等),扩展名ext(.EXE、.COM等)组成一个文件名存与path中.
intfnsplit(char*path,char*drive,char*dir,char*name,char*ext)
此函数将文件名path分解成盘符drive(C:、A:等),路径dir(\TC、\BC\LIB等),
文件名name(TC、WPS等),扩展名ext(.EXE、.COM等),并分别存入相应的变量中.
intgetcurdir(intdrive,char*direc)此函数返回指定驱动器的当前工作目录名称
drive指定的驱动器(0=当前,1=A,2=B,3=C等)
direc保存指定驱动器当前工作路径的变量成功返回0
char*getcwd(char*buf,iintn)此函数取当前工作目录并存入buf中,直到n个字
节长为为止.错误返回NULL
intgetdiskO取当前正在使用的驱动器,返回一个整数(0=A,l=B,2=C等)
intsetdisk(intdrive)设置要使用的驱动器drive(0=A,1=B,2=C等),
返回可使用驱动器总数
intmkdir(char*pathname)建立一个新的目录pathname,成功返回0
intrmdir(char*pathname)删除一个目录pathname,成功返回0
char*mktemp(char*template)构造一■个当前目录上没有的文件名并存于template中
char*searchpath(char*pathname)利用MSDOS找出文件filename所在路径,
,此函数使用DOS的PATH变量,未找到文件返回NULL
--------------------------------------------------------------------进程函数,所在
函数库为stdlib.h、process,h
voidabort()此函数通过调用具有出口代码3的_exit写一个终止信息于stdc门
并异常终止程序。无返回值
intexec…装入和运行其它程序
intexecl(char*pathname,char*argO,char*argl,char*argn,NULL)
intexecle(char*pathname,char*argO,char*argl,char*argn,NULL,char
*envp[])
intexeclp(char*pathname,char*argO,char*argl,•,,,NULL)
intexeclpe(char*pathname,char*argO,char*argl,NULL,char*envp[])
intexecv(char*pathname,char*argv[])
intexecve(char*pathname,char*argv[],char*envp[])
intexecvp(char*pathname,char*argv[])
intexecvpe(char*pathname,char*argv[],char*envp口)
exec函数族装入并运行程序pathname,并将参数
argO(argl,arg2,argv[],envp口)传递给子程序,出错返回T
在exec函数族中,后缀1、v、p、e添加到exec后,
所指定的函数将具有某种操作能力
有后缀P时,函数可以利用DOS的PATH变量查找子程序文件。
1时,函数中被传递的参数个数固定。
v时;函数中被传递的参数个数不固定。
e时,函数传递指定参数envp,允许改变子进程的环境,
无后缀e时、子进程使用当前程序的环境。
void_exit(intstatus)终止当前程序,但不清理现场
voidexit(intstatus)终止当前程序,关闭所有文件,写缓冲区的输出(等待输出),
并调用任何寄存器的〃出口函数〃,无返回值
intspawn…运行子程序
intspawn1(intmode,char*pathname,char*argO,char*argl,char*argn,NULL)
intspawnle(intmode,char*pathname,char*argO,char*argl,•••,char
*argn,NULL,char*envp口)
intspawnIp(intmode,char*pathname,char*argO,char*argl,char
*argn,NULL)
intspawnlpe(intmode,char*pathname,char*argO,char*argl,,,,,char
*argn,NULL,char*envp[])intspawnv(intmode,char*pathname,char*argv[])
intspawnve(intmode,char*pathname,char*argv[],char*envp[])
intspawnvp(intmode,char*pathname,char*argv口)
intspawnvpe(intmode,char*pathname,char*argv[1,char*envp[])
spawn函数族在mode模式下运行子程序pathname,并将参数
argO(argl,arg2,argv[],envp口)传递给子程序.出错返回T
mode为运行模式
mode为P_WAIT表示在子程序运行完后返回本程序
P_NOWAIT表示在子程序运行时同时运行本程序(不可用)
P_OVERLAY表示在本程序退出后运行子程序
在spawn函数族中,后缀1、v、p、e添加到spawn后,
所指定的函数将具有某种操作能力
有后缀p时,函数利用DOS的PATH查找子程序文件
1时,函数传递的参数个数固定.
v时,函数传递的参数个数不固定.
e时,指定参数envp可以传递给子程序,允许改变子程序运行环境.
当无后缀e时,子程序使用本程序的环境.
intsystem(char*command)将MSDOS命令command传递给DOS执行
-转换子程序,函
数库为math,h、stdlib.h>ctype.h、float,h
char*ecvt(doublevalue,intndigit,int*decpt,int*sign)
将浮点数value转换成字符串并返回该字符串
char*fcvt(doublevalue,intndigit,int*decpt,int*sign)
将浮点数value转换成字符串并返回该字符串
char*gcvt(doublevalue,intndigit,char*buf)
将数value转换成字符串并存于buf中,并返回buf的指针
char*ultoa(unsignedlongvalue,char*string,intradix)
将无符号整型数value转换成字符串并返回该字符串,radix为转换时所用基数
char*ltoa(longvalue,char*string,intradix)
将长整型数value转换成字符串并返回该字符串,radix为转换时所用基数
char*itoa(intvalue,char*string,intradix)
将整数value转换成字符串存入string,radix为转换时所用基数
doubleatof(char*nptr)将字符串nptr转换成双精度数,并返回这个数,错误返回0
intatoi(char*nptr)将字符串nptr转换成整型数,并返回这个数,错误返回0
longatol(char*nptr)将字符串nptr转换成长整型数,并返回这个数,错误返回0
doublestrtod(char*str,char**ondptr)将字符串str转换成双精度数,并返回这个
数,
longstrtol(char*str,char**endptr,intbase)将字符串str转换成长整型数,
并返回这个数,
inttoascii(intc)返回c相应的ASCII
inttolower(intch)若ch是大写字母(‘A'」Z')返回相应的小写字母('a'-'z')
int_tolower(intch)返回ch相应的小写字母(‘a'-'z')
inttoupper(intch)若ch是小写字母('a'z')返回相应的大写字母('A'Z')
int_toupper(intch)返回ch相应的大写字母('A'-'Z')
--------------------------------------------------------------------诊断函数,所在
函数库为assert,h、math,h
voidassert(inttest)一个扩展成if语句那样的宏,如果test测试失败,就显示一
个信息并异常终止程序,无返回值
voidperror(char*string)本函数将显示最近一次的错误信息,格式如下:字符串
string:错误信息
char*strerror(char*str)本函数返回最近一次的错误信息,格式如下:
字符串str:错误信息
intmatherr(structexception*e)
用户修改数学错误返回信息函数(没有必要使用)
double_matherr(_mexcepwhy,char*fun,double*arglp,
double*arg2p,doubleretval)
用户修改数学错误返回信息函数(没有必要使用)
输入输出子程序,函数库为io.h、conio.h>stat,h、dos.h>stdio.h,signal,h
intkbhitO本函数返回最近所敲的按键
intfgetcharO从控制台(键盘)读一个字符,显示在屏幕上
intgetchO从控制台(键盘)读一个字符,不显示在屏幕上
intputch()向控制台(键盘)写一个字符
intgetcharO从控制台(键盘)读一个字符,显示在屏幕上
intputcharO向控制台(键盘)写一个字符
intgetcheO从控制台(键盘)读一个字符,显示在屏幕上
intungetch(intc)把字符c退回给控制台(键盘)
char*cgets(char*string)从控制台(键盘)读入字符串存于string中
intscanf(char*format[,argument…])从控制台读入一个字符串,分别对各个参数进
行赋值,使用BIOS进行输出
intvscanf(char*format,Valistparam)从控制台读入一个字符串,分别对各个参数进
行赋值,使用BIOS进行输此参数从Valistparam中取得
intcscanf(char*format[,argument…])从控制台读入一个字符串,分别对各个参数进
行赋值,直接对控制台作操作,比如显示器在显示时字符时即为直接写频方式显示int
sscanf(char*string,char*format[,argument,…])通过字符串string,分别对各个参
数进行赋值
intvsscanf(char*string,char*format,Vlistparam)通过字符串string,分别对各
个参数进行赋值,参数从Vlistparam中取得
intputs(char*string)发关一个字符串string给控制台(显示器),
使用BIOS进行输出
voidcputs(char*string)发送一个字符串string给控制台(显示器),
直接对控制台作操作,比如显示器即为直接写频方式显示
intprintf(char*format[,argument,•••])发送格式化字符串输出给控制台(显示器)
使用BIOS进行输出
intvprintf(char*format,Valistparam)发送格式化字符串输出।给控制台(显示器)
使用BIOS进行输出,参数从Valistparam中取得
intcprintf(char*format[,argument,•••])发送格式化字符串输出给控制台(显示器),
直接对控制台作操作,比如显示器即为直接写频方式显示
intvcprintf(char*format,Valistparam)发送格式化字符串输出给控制台(显示器),
直接对控制台作操作,比如显示器即为直接写频方式显示,
参数从Valistparam中取得
intsprintf(char*string,char*format[,argument,••,])
将字符串string的内容重新写为格式化后的字符串
intvsprintf(char*string,char*format,Valistparam)
将字符串string的内容重新写为格式化后的字符串,参数从Valistparam中取得int
rename(char*oldname,char*ncwnamc)将文件oldname的名称改为newnameint
ioctl(inthandle,intcmd[,int*argdx,intargcx])本函数是用来控制输入/输出设备
的,请见下表:
Icmd值|功能!
I0|取出设备信息|
I1I设置设备信息I
I2|把argcx字节读入由argdx所指的地址|
I3|在argdx所指的地址写argcx字节|
I4|除把handle当作设备号(0=当前,1=A,等)之外,均和cmd=2时一样||5|
除把handle当作设备号(0=当前,1=A,等)之外,均和cmd=3时一样||6|取输入状态
I
I7|取输出状态|
I8|测试可换性;只对于DOS3.x|
I11I置分享冲突的重算计数;只对DOS3.x|
int(*ssignal(intsig,int("action)())()执行软件信号:(没必要使用)
intgsignaKintsig)执行软件信号(没必要使用)
int_open(char*pathname,intaccess)为读或写打开一个文件,
按后按access来确定是读文件还是写文件,access值见下表
Iaccess值|意义
IO_RDONLY|读文件|
O_WRONLY|写文件|
O_RDWR|即读也写|
0NOINHERIT|若文件没有传递给子程序,则被包含|
O_DENYALL|只允许当前处理必须存取的文件|
O_DENYWRITE|只允许从任何其它打开的文件读|
0DENYREAD|只允许从任何其它打开的文件写|
O_DENYNONE|允许其它共享打开的文件|
intopen(char*pathname,intaccess[,intpermiss])为读或写打开一个文件,按后
按access来确定是读文件还是写文件,access值见下表
access值|意义|
O_RDONLY|读文件|
O_WRONLY|写文件|
O_RDWR|即读也写|
O_NDELAY|没有使用;对UNIX系统兼容|
O_APPEND|即读也写,但每次写总是在文件尾添加|
O_CREAT|若文件存在,此标志无用;若不存在,建新文件|
O_TRUNC|若文件存在,则长度被截为0,属性不变|
0EXCL|未用;对UNIX系统兼容|
O_BINARY|此标志可显示地给出以二进制方式打开文件|
O_TEXT|此标志可用于显示地给出以文本方式打开文件|
permiss为文件属性,可为以下值:
SIWRITE允许写SIREAD允许读SIREADS_IWRITE允许读、写intcreat(char
*filename,intpermiss)建立一个新文件filename,并设定读写性。permiss为文件读
写性,可以为以下值
S」WRITE允许写S」READ允许读S_IREADS」WRITE允许读、写int_creat(char
*filename,intattrib)建立•个新文件filename,并设定文件属性。attrib为文件属
性,可以为以下值
FA_RDONLY只读FA_HIDDEN隐藏FA_SYSTEM系统
intcreatnew(char*filenamt,intattrib)建立,个新文件filename,并设定文件
属性。attrib为文件属性,可以为以下值
FA_RDONLY只读FA_HIDDEN隐
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 咨询工程师(投资)《宏观经济政策与发展规划》考前冲刺必会试题及答案
- 研究生考试考研教育学专业基础(311)试卷及答案指导(2024年)
- 2024年度设备保修服务协议细则
- 2024年商业买卖合作协议精简
- 2024年合作伙伴保密协议
- 2024年监理协议延期实施细则协议
- 2024年餐厅室内装潢工程协议
- 2024公司间短期资金借贷协议范本
- 2024年度多孔砖订购协议
- 2024年高校毕业实习生劳动协议
- 过程审核检查表-VDA6.3可落地执行
- 三年级校本课程教案(全)
- 二级耳鼻喉医院基本标准
- 新能源产业链深度分析
- 2024年医疗信息安全培训资料
- 无人机飞行操作手册
- 智慧环卫行业现状分析报告
- 车辆定点维修询价文件
- 教师教学述评管理制度
- 建立网络安全管理责任制明确安全工作职责和责任
- 安徽省工伤职停工留薪分类目录
评论
0/150
提交评论