core.stdc.ctype

D header file for C99.

Functions 14

fnint isalnum(int c) pure extern(C) @trusted nothrow @nogc
fnint isalpha(int c) pure extern(C) @trusted nothrow @nogc
fnint isblank(int c) pure extern(C) @trusted nothrow @nogc
fnint iscntrl(int c) pure extern(C) @trusted nothrow @nogc
fnint isdigit(int c) pure extern(C) @trusted nothrow @nogc
fnint isgraph(int c) pure extern(C) @trusted nothrow @nogc
fnint islower(int c) pure extern(C) @trusted nothrow @nogc
fnint isprint(int c) pure extern(C) @trusted nothrow @nogc
fnint ispunct(int c) pure extern(C) @trusted nothrow @nogc
fnint isspace(int c) pure extern(C) @trusted nothrow @nogc
fnint isupper(int c) pure extern(C) @trusted nothrow @nogc
fnint isxdigit(int c) pure extern(C) @trusted nothrow @nogc
fnint tolower(int c) pure extern(C) @trusted nothrow @nogc
fnint toupper(int c) pure extern(C) @trusted nothrow @nogc