英語版
このページの英語版を見る

core.stdc.ctype

C99用のDヘッダファイル。
このモジュールには、標準Cヘッダーから選択された型と関数へのバインディングが含まれている。 関数へのバインディングが含まれている。 <ctype.h>.注釈: これは自動的に生成されるものではない。 は自動的に生成されたものではなく、元のCヘッダーからいくつかの型や関数が省略されている可能性があることに注意してほしい。 を省略することがある。
License:
Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)
Authors:
Sean Kelly
Standards:
ISO/IEC 9899:1999 (E)
pure nothrow @nogc @trusted int isalnum(int c);
pure nothrow @nogc @trusted int isalpha(int c);
pure nothrow @nogc @trusted int isblank(int c);
pure nothrow @nogc @trusted int iscntrl(int c);
pure nothrow @nogc @trusted int isdigit(int c);
pure nothrow @nogc @trusted int isgraph(int c);
pure nothrow @nogc @trusted int islower(int c);
pure nothrow @nogc @trusted int isprint(int c);
pure nothrow @nogc @trusted int ispunct(int c);
pure nothrow @nogc @trusted int isspace(int c);
pure nothrow @nogc @trusted int isupper(int c);
pure nothrow @nogc @trusted int isxdigit(int c);
pure nothrow @nogc @trusted int tolower(int c);
pure nothrow @nogc @trusted int toupper(int c);