islower

 

書式
int islower(int c);

機能
英小文字(a-z)かどうか判定する。

戻り値
真なら0以外、偽なら0。

ヘッダーファイル
ctype.h

 

使用例

char c = 't';
int b;
b = islower(c)