tail head cat sleep
QR code linking to this page

manページ  — ISLOWER

名称

islower

内容

ライブラリ

Standard C Library (libc, -lc)– 小文字のテスト

書式

#include <ctype.h>

int
islower(int c);

解説

islower() 関数は、小文字であるかどうかをテストします。 C の単一の char で表現できるロケール ( multibyte(3) 参照) に対しては、引数の値は unsigned char で表現できるものか値 EOF です。 ASCII 文字集合においては、次の文字が含まれます (それらの数値を 8 進数でも示します):


amp;141 ``a'' 142 ``b'' 143 ``c'' 144 ``d'' 145 ``e''

amp;146 ``f'' 147 ``g'' 150 ``h'' 151 ``i'' 152 ``j''

amp;153 ``k'' 154 ``l'' 155 ``m'' 156 ``n'' 157 ``o''

amp;160 ``p'' 161 ``q'' 162 ``r'' 163 ``s'' 164 ``t''

amp;165 ``u'' 166 ``v'' 167 ``w'' 170 ``x'' 171 ``y''

amp;172 ``z''

戻り値

islower() 関数は、文字テスト結果が偽のとき 0 を返し、 文字テスト結果が真のとき 0 以外を返します。

関連項目

ctype(3), multibyte(3), ascii(7)

規格

islower() 関数は ISO/IEC 9899:1990 ("ISO C90") に適合しています。

ISLOWER (3) June 4, 1993

tail head cat sleep
QR code linking to this page


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

This philosophy, in the hands of amateurs, leads to inexplicably mind-numbing botches like the existence of two programs, “head” and “tail,” which print the first part or the last part of a file, depending. Even though their operations are duals of one another, “head” and “tail” are different programs, written by different authors, and take different options!
— The Unix Haters' handbook