分类: C/C++
2011-04-26 15:12:44
函数名 | 功能 | 定义 | 所在头文件 |
asctime | 转换日期和时间为ASCII码 | char *asctime(const struct tm *tblock); | time.h |
atexit | 注册终止函数 | int atexit(atexit_t func); | stdlib.h |
atof | 把字符串转换成浮点数 | double atof(const char *nptr); | stdlib.h |
atoi | 把字符串转换成长整型数 | int atoi(const char *nptr); | stdlib.h |
atol | 把字符串转换成长整型数 | long atol(const char *nptr); | stdlib.h |
函数名 | 功能 | 定义 | 所在头文件 |
access | 确定文件的访问权限 | int access(const char *filename, int amode); | io.h |
函数名 | 功能 | 定义 | 所在头文件 |
abs | 求整数的绝对值 | int abs(int i); | math.h |
asin | 反正弦函数 | double asin(double x); | math.h |
acos | 反余弦函数 | double acos(double x); | math.h |
atan | 反正切函数 | double atan(double x); | math.h |
atan2 | 计算Y/X的反正切值 | double atan2(double y, double x); | math.h |
函数名 | 功能 | 定义 | 所在头文件 |
abort | 异常终止一个进程 | void abort(void); | stdlib.h |
assert | 测试一个条件并可能使程序终止 | void assert(int test); | stdlib.h assert.h |
函数名 | 功能 | 定义 | 所在头文件 |
absread, abswirte | 绝对磁盘扇区读、写数据 | int absread(int drive, int nsects, int sectno, void *buffer); int abswrite(int drive, int nsects, in tsectno, void *buffer); | |
函数名 | 功能 | 定义 | 所在头文件 |
allocmem | 分配DOS存储段 | int allocmem(unsigned size, unsigned *seg); | |
函数名 | 功能 | 定义 | 所在头文件 |
arc | 画一弧线 | void far arc(int x, int y, int stangle, int endangle, int radius); | graphics.h |
函数名 | 功能 | 定义 | 所在头文件 |
|