S.N. |
功能及說明 |
1 |
double atof(const char *str)
轉(zhuǎn)換參數(shù)str指向的字符串到浮點數(shù)(double類型)。 |
2 |
int atoi(const char *str)
轉(zhuǎn)換參數(shù)str指向的字符串為整數(shù)(int型)。 |
3 |
long int atol(const char *str)
轉(zhuǎn)換字符串參數(shù)str指向一個長整型(類型為long int) |
4 |
double strtod(const char *str, char **endptr)
轉(zhuǎn)換參數(shù)str指向的字符串到浮點數(shù)(double類型)。 |
5 |
long int strtol(const char *str, char **endptr, int base)
字符串轉(zhuǎn)換成一個長整型(類型為long int)參數(shù)str指向。 |
6 |
unsigned long int strtoul(const char *str, char **endptr, int base)
轉(zhuǎn)換字符串參數(shù)str指向一個無符號長整型(unsigned long型整數(shù))。 |
7 |
void *calloc(size_t nitems, size_t size)
分配請求的內(nèi)存,并返回一個指向它的指針。 |
8 |
void free(void *ptr
calloc,malloc或realloc調(diào)用先前分配的回收內(nèi)存。 |
9 |
void *malloc(size_t size)
Allocates the requested memory and returns a yiibaier to it. |
10 |
void *realloc(void *ptr, size_t size)
嘗試調(diào)整的內(nèi)存塊的大小由ptr指向先前調(diào)用malloc或calloc的分配。 |
11 |
void abort(void)
導致程序異常終止。 |
12 |
int atexit(void (*func)(void))
導致指定的函數(shù)功能,當程序正常終止時,被調(diào)用。 |
13 |
void exit(int status)
導致正常程序終止。 |
14 |
char *getenv(const char *name)
name所指向環(huán)境字符串的搜索,并返回相關的字符串的值。 |
15 |
int system(const char *string)
字符串指定的命令被傳遞到主機環(huán)境中,要執(zhí)行的命令處理器。 |
16 |
void *bsearch(const void *key, const void *base, size_t nitems, size_t size, int (*compar)(const void *, const void *))
執(zhí)行二進制搜索。 |
17 |
void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*))
對數(shù)組排序 |
18 |
int abs(int x)
返回x的絕對值。 |
19 |
div_t div(int numer, int denom)
數(shù)(分子numer)除以分母(分母denom)。 |
20 |
long int labs(long int x)
返回x的絕對值。 |
21 |
ldiv_t ldiv(long int numer, long int denom)
數(shù)(分母denom)除以分母(分子numer)。 |
22 |
int rand(void)
返回一個取值范圍為0到RAND_MAX之間的偽隨機數(shù)。 |
23 |
void srand(unsigned int seed)
這個函數(shù)使用rand函數(shù)隨機數(shù)生成器的種子。 |
24 |
int mblen(const char *str, size_t n)
返回參數(shù)str指向一個多字節(jié)字符的長度。 |
25 |
size_t mbstowcs(schar_t *pwcs, const char *str, size_t n)
轉(zhuǎn)換pwcs 指向的數(shù)組參數(shù)str所指向的多字節(jié)字符的字符串。 |
26 |
int mbtowc(whcar_t *pwc, const char *str, size_t n)
檢查參數(shù)str所指向的多字節(jié)字符。 |
27 |
size_t wcstombs(char *str, const wchar_t *pwcs, size_t n)
存儲在數(shù)組pwcs 多字節(jié)字符并存入字符串str中的代碼轉(zhuǎn)換。 |
28 |
int wctomb(char *str, wchar_t wchar)
檢查參數(shù)wchar多字節(jié)字符對應的代碼。 |