Last Update 2012/07/05
引数で与えられた文字がアルファベットの大文字の場合、小文字に変換します。
戻り値1 = tolower( 引数1 )
戻り値1 :
int
引数1がアルファベットの大文字
対応する小文字
上記以外
引数1
引数1 :
int
変換の対象となるASCII文字
(例)
#include <stdio.h>
#include <ctype.h>
int main ()
{
int c;
int c_ret;
printf("tolower()結果\n");
for (c=0x40; c<0x80; c=c+4)
{
c_ret = tolower(c);
printf("[%02X] : %c\n", c, c_ret);
}
return 0;
}
実行結果
tolower()結果
[40] : @
[44] : d
[48] : h
[4C] : l
[50] : p
[54] : t
[58] : x
[5C] : \
[60] : `
[64] : d
[68] : h
[6C] : l
[70] : p
[74] : t
[78] : x
[7C] : |