tail head cat sleep
QR code linking to this page

manページ  — TOLOWER

名称

tolower – 大文字から小文字への変換

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <ctype.h>

int
tolower(int c);

解説

tolower() 関数は大文字を対応する小文字に変換します。 C 言語の chars 型ひとつに関するロケール ( multibyte(3) 参照 ) のことを考慮して、引数の値は unsigned char または EOF の値として表されなければなりません。

戻り値

引数が大文字である場合は、その文字に対応する小文字がある場合は tolower() 関数はそれを返します。それ以外の場合は、その引数が変更されないまま返されます。

関連項目

isalnum(3), isalpha(3), isascii(3), iscntrl(3), isdigit(3), isgraph(3), islower(3), isprint(3), ispunct(3), isspace(3), isupper(3), isxdigit(3), multibyte(3), stdio(3), toascii(3), toupper(3), ascii(7)

規格

tolower() 関数は ISO/IEC 9899:1990 ("ISO C90") に準拠しています。

TOLOWER (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

An ASCII character walks into a bar and orders a double. "Having a bad day?" asks the barman. "Yeah, I have a parity error," replies the ASCII character. The barman says, "Yeah, I thought you looked a bit off."