# C 标准库 - <stdlib.h>
## 简介
**stdlib .h** 头文件定义了四个变量类型、一些宏和各种通用工具函数。
## 库变量
下面是头文件 stdlib.h 中定义的变量类型:
| 变量 | 描述 |
| --- | --- |
| **size_t** | 这是无符号整数类型,它是 **sizeof** 关键字的结果。 |
| **wchar_t** | 这是一个宽字符常量大小的整数类型。 |
| **div_t** | 这是 **div** 函数返回的结构。 |
| **ldiv_t** | 这是 **ldiv** 函数返回的结构。 |
## 库宏
下面是头文件 stdlib.h 中定义的宏:
| 宏 | 描述 |
| --- | --- |
| **NULL** | 这个宏是一个空指针常量的值。 |
| **EXIT_FAILURE** | 这是 exit 函数失败时要返回的值。 |
| **EXIT_SUCCESS** | 这是 exit 函数成功时要返回的值。 |
| **RAND_MAX** | 这个宏是 rand 函数返回的最大值。 |
| **MB_CUR_MAX** | 这个宏表示在多字节字符集中的最大字符数,不能大于 MB_LEN_MAX。 |
## 库函数
下面是头文件 stdlib.h 中定义的函数:
| 函数 | 描述 |
| --- | --- |
| [double atof(const char \*str)](c-function-atof.html) | 把参数 _str_ 所指向的字符串转换为一个浮点数(类型为 double 型)。 |
| [int atoi(const char \*str)](c-function-atoi.html) | 把参数 _str_ 所指向的字符串转换为一个整数(类型为 int 型)。 |
| [long int atol(const char \*str)](c-function-atol.html) | 把参数 _str_ 所指向的字符串转换为一个长整数(类型为 long int 型)。 |
| [double strtod(const char \*str, char \*\*endptr)](c-function-strtod.html) | 把参数 _str_ 所指向的字符串转换为一个浮点数(类型为 double 型)。 |
| [long int strtol(const char \*str, char \*\*endptr, int base)](c-function-strtol.html) | 把参数 _str_ 所指向的字符串转换为一个长整数(类型为 long int 型)。 |
| [unsigned long int strtoul(const char \*str, char \*\*endptr, int base)](c-function-strtoul.html) | 把参数 _str_ 所指向的字符串转换为一个无符号长整数(类型为 unsigned long int 型)。 |
| [void \*calloc(size_t nitems, size_t size)](c-function-calloc.html) | 分配所需的内存空间,并返回一个指向它的指针。 |
| [void free(void \*ptr](c-function-free.html) | 释放之前调用 _calloc、malloc_ 或 _realloc_ 所分配的内存空间。 |
| [void \*malloc(size_t size)](c-function-malloc.html) | 分配所需的内存空间,并返回一个指向它的指针。 |
| [void \*realloc(void \*ptr, size_t size)](c-function-realloc.html) | 尝试重新调整之前调用 _malloc_ or _calloc_ 所分配的 ptr 所指向的内存块的大小。 |
| [void abort(void)](c-function-abort.html) | 使一个异常程序终止。 |
| [int atexit(void (\*func)(void))](c-function-atexit.html) | 当程序正常终止时,调用指定的函数 \*\*func\*\*。 |
| [void exit(int status)](c-function-exit.html) | 是程序正常终止。 |
| [char \*getenv(const char \*name)](c-function-getenv.html) | 搜索 name 所指向的环境字符串,并返回相关的值给字符串。 |
| [int system(const char \*string)](c-function-system.html) | 由 string 指定的命令传给要被命令处理器执行的主机环境。 |
| [void \*bsearch(const void \*key, const void \*base, size_t nitems, size_t size, int (\*compar)(const void \*, const void \*))](c-function-bsearch.html) | 执行二进制搜索。 |
| [void qsort(void \*base, size_t nitems, size_t size, int (\*compar)(const void \*, const void\*))](c-function-qsort.html) | 数组排序。 |
| [int abs(int x)](c-function-abs.html) | 返回 x 的绝对值。 |
| [div_t div(int numer, int denom)](c-function-div.html) | 分子除以分母。 |
| [long int labs(long int x)](c-function-labs.html) | 返回 x 的绝对值。 |
| [ldiv_t ldiv(long int numer, long int denom)](c-function-ldiv.html) | 分子除以分母。 |
| [int rand(void)](c-function-rand.html) | 返回一个范围在 0 到 _RAND_MAX_ 之间的伪随机数。 |
| [void srand(unsigned int seed)](c-function-srand.html) | 该函数播种由函数 \*\*rand\*\* 使用的随机数发生器。 |
| [int mblen(const char \*str, size_t n)](c-function-mblen.html) | 返回参数 _str_ 所指向的多字节字符的长度。 |
| [size_t mbstowcs(schar_t \*pwcs, const char \*str, size_t n)](c-function-mbstowcs.html) | 把参数 _str_ 所指向的多字节字符的字符串转换为参数 _pwcs_ 所指向的数组。 |
| [int mbtowc(whcar_t \*pwc, const char \*str, size_t n)](c-function-mbtowc.html) | 检查参数 _str_ 所指向的多字节字符。 |
| [size_t wcstombs(char \*str, const wchar_t \*pwcs, size_t n)](c-function-wcstombs.html) | 把数组 _pwcs_ 中存储的编码转换为多字节字符,并把它们存储在字符串 _str_ 中。 |
| [int wctomb(char \*str, wchar_t wchar)](c-function-wctomb.html) | 检查对应于参数 _wchar_ 所给出的多字节字符的编码。 |
- C语言教程
- C 简介
- C 环境设置
- C 程序结构
- C 基本语法
- C 数据类型
- C 变量
- C 常量
- C 存储类
- C 运算符
- C 判断
- C 循环
- C 函数
- C 作用域规则
- C 数组
- C 指针
- C 字符串
- C 结构体
- C 共用体
- C 位域
- C typedef
- C 输入 & 输出
- C 文件读写
- C 预处理器
- C 头文件
- C 强制类型转换
- C 错误处理
- C 递归
- C 可变参数
- C 内存管理
- C 命令行参数
- C语言参考
- C 标准库 - <assert.h>
- C 库宏 - assert()
- C 标准库 - <ctype.h>
- C 库函数 - isalnum()
- C 库函数 - isalpha()
- C 库函数 - iscntrl()
- C 库函数 - isdigit()
- C 库函数 - isgraph()
- C 库函数 - islower()
- C 库函数 - isprint()
- C 库函数 - ispunct()
- C 库函数 - isspace()
- C 库函数 - isupper()
- C 库函数 - isxdigit()
- C 标准库 - <errno.h>
- C 库宏 - errno
- C 库宏 - EDOM
- C 库宏 - ERANGE
- C 标准库 - <float.h>
- C 标准库 - <limits.h>
- C 标准库 - <locale.h>
- C 库函数 - setlocale()
- C 库函数 - localeconv()
- C 标准库 - <math.h>
- C 库函数 - acos()
- C 库函数 - asin()
- C 库函数 - atan()
- C 库函数 - atan2()
- C 库函数 - cos()
- C 库函数 - cosh()
- C 库函数 - sin()
- C 库函数 - sinh()
- C 库函数 - tanh()
- C 库函数 - exp()
- C 库函数 - frexp()
- C 库函数 - ldexp()
- C 库函数 - log()
- C 库函数 - log10()
- C 库函数 - modf()
- C 库函数 - pow()
- C 库函数 - sqrt()
- C 库函数 - ceil()
- C 库函数 - fabs()
- C 库函数 - floor()
- C 库函数 - fmod()
- C 标准库 - <setjmp.h>
- C 库宏 - setjmp()
- C 库函数 - longjmp()
- C 标准库 - <signal.h>
- C 库函数 - signal()
- C 库函数 - raise()
- C 标准库 - <stdarg.h>
- C 库宏 - va_start()
- C 库宏 - va_arg()
- C 库宏 - va_end()
- C 标准库 - <stddef.h>
- C 库宏 - NULL
- C 库宏 - offsetof()
- C 标准库 - <stdio.h>
- C 库函数 - fclose()
- C 库函数 - clearerr()
- C 库函数 - feof()
- C 库函数 - ferror()
- C 库函数 - fflush()
- C 库函数 - fgetpos()
- C 库函数 - fopen()
- C 库函数 - fread()
- C 库函数 - freopen()
- C 库函数 - fseek()
- C 库函数 - fsetpos()
- C 库函数 - ftell()
- C 库函数 - fwrite()
- C 库函数 - remove()
- C 库函数 - rename()
- C 库函数 - rewind()
- C 库函数 - setbuf()
- C 库函数 - tmpfile()
- C 库函数 - tmpnam()
- C 库函数 - fprintf()
- C 库函数 - printf()
- C 库函数 - sprintf()
- C 库函数 - vfprintf()
- C 库函数 - vprintf()
- C 库函数 - vsprintf()
- C 库函数 - fscanf()
- C 库函数 - scanf()
- C 库函数 - sscanf()
- C 库函数 - fgetc()
- C 库函数 - fgets()
- C 库函数 - fputc()
- C 库函数 - fputs()
- C 库函数 - getc()
- C 库函数 - getchar()
- C 库函数 - gets()
- C 库函数 - putc()
- C 库函数 - putchar()
- C 库函数 - puts()
- C 库函数 - ungetc()
- C 库函数 - perror()
- C 标准库 - <stdlib.h>
- C 库函数 - atof()
- C 库函数 - atoi()
- C 库函数 - atol()
- C 库函数 - strtod()
- C 库函数 - strtol()
- C 库函数 - strtoul()
- C 库函数 - calloc()
- C 库函数 - free()
- C 库函数 - malloc()
- C 库函数 - realloc()
- C 库函数 - abort()
- C 库函数 - atexit()
- C 库函数 - exit()
- C 库函数 - getenv()
- C 库函数 - system()
- C 库函数 - bsearch()
- C 库函数 - qsort()
- C 库函数 - abs()
- C 库函数 - div()
- C 库函数 - labs()
- C 库函数 - ldiv()
- C 库函数 - rand()
- C 库函数 - srand()
- C 库函数 - mblen()
- C 库函数 - mbstowcs()
- C 库函数 - mbtowc()
- C 库函数 - wcstombs()
- C 库函数 - wctomb()
- C 标准库 - <string.h>
- C 库函数 - memchr()
- C 库函数 - memcmp()
- C 库函数 - memcpy()
- C 库函数 - memmove()
- C 库函数 - memset()
- C 库函数 - strcat()
- C 库函数 - strncat()
- C 库函数 - strchr()
- C 库函数 - strcmp()
- C 库函数 - strncmp()
- C 库函数 - strcoll()
- C 库函数 - strcpy()
- C 库函数 - strncpy()
- C 库函数 - strcspn()
- C 库函数 - strerror()
- C 库函数 - strlen()
- C 库函数 - strpbrk()
- C 库函数 - strrchr()
- C 库函数 - strspn()
- C 库函数 - strstr()
- C 库函数 - strtok()
- C 库函数 - strxfrm()
- C 标准库 - <time.h>
- C 库函数 - asctime()
- C 库函数 - clock()
- C 库函数 - ctime()
- C 库函数 - difftime()
- C 库函数 - gmtime()
- C 库函数 - localtime()
- C 库函数 - mktime()
- C 库函数 - strftime()
- C 库函数 - time()
- 免责声明