📄 to
字号:
@c ----------------------------------------------------------------------
@node tolower, ctype
@heading @code{tolower}
@subheading Syntax
@example
#include <ctype.h>
int tolower(int c);
@end example
@subheading Description
This function returns @var{c}, converting it to lower case if it is
upper case. @xref{toupper}
@subheading Return Value
The upper case letter.
@subheading Example
@example
for (i=0; buf[i]; i++)
buf[i] = tolower(buf[i]);
@end example
@c ----------------------------------------------------------------------
@node toupper, ctype
@heading @code{toupper}
@subheading Syntax
@example
#include <ctype.h>
int toupper(int c);
@end example
@subheading Description
This function returns @var{c}, converting it to upper case if it is
lower case. @xref{tolower}
@subheading Return Value
The upper case letter.
@subheading Example
@example
for (i=0; buf[i]; i++)
buf[i] = toupper(buf[i]);
@end example
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -