core.stdc.ctype
Файл заголовка D для C99.
Этот модуль содержит привязки к выбранным типам и функциям из стандартного заголовка C <ctype.h>. Обратите внимание, что он не генерируется автоматически и может опустить некоторые типы/функции из исходного заголовка C.
- Лицензия:
- Распространяется по Boost Software License 1.0. (См. сопровождаемый файл LICENSE)
- Авторы:
- Sean Kelly
- Источник
- core/stdc/ctype.d
- Стандарты:
- 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);
© 1999–2021 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_stdc_ctype.html