Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1100147
  • 博文数量: 165
  • 博客积分: 5957
  • 博客等级: 大校
  • 技术积分: 2015
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-24 15:04
文章分类

全部博文(165)

文章存档

2014年(10)

2013年(14)

2012年(9)

2011年(22)

2010年(17)

2009年(17)

2008年(26)

2007年(34)

2006年(16)

我的朋友

分类: C/C++

2009-02-11 13:29:15

以下各行分别表示functions,Returns
stdlib.h
atof() A value of type double that is produced from the string argument
atoi() A value of type int that is produced from the string argument
atol() A value of type long that is produced from the string argument
atoll() A value of type long long that is produced from the string argument
 
ctype.h
islower() Lowercase letter
isupper() Uppercase letter
isalpha() Uppercase or lowercase letter
isalnum() Uppercase or lowercase letter or a digit
iscntrl() Control character
isprint() Any printing character including space
isgraph() Any printing character except space
isdigit() Decimal digit ('0' to '9')
isxdigit() Hexadecimal digit ('0' to '9', 'A' to 'F', 'a' to 'f')
isblank() Standard blank characters (space, '\t')
isspace() Whitespace character (space, '\n', '\t', '\v', '\r', '\f')
ispunct() Printing character for which isspace() and isalnum() return false
 
wchar.h
iswlower() Lowercase letter
iswupper() Uppercase letter
iswalnum() Uppercase or lowercase letter
iswcntrl() Control character
iswprint() Any printing character including space
iswgraph() Any printing character except space
iswdigit() Decimal digit (L'0' to L'9')
iswxdigit() Hexadecimal digit (L'0' to L'9', L'A' to L'F', L'a' to L'f')
iswblank() Standard blank characters (space, L'\t')
iswspace() Whitespace character (space, L'\n', L'\t', L'\v', L'\r', L'\f')
iswpunct() Printing character for which iswspace() and iswalnum() return false
阅读(1920) | 评论(0) | 转发(0) |
0

上一篇:风格习惯

下一篇:woman drive

给主人留下些什么吧!~~