core.stdc.wctype

D header file for C99.

This module contains bindings to selected types and functions from the standard C header <_wctype.h>. Note that this is not automatically generated, and may omit some types/functions from the original C header.

Public Imports

core.stdc.wchar_
public import core.stdc.wchar_;
Undocumented in source.

Members

Aliases

wctrans_t
alias wctrans_t = wchar_t
wctype_t
alias wctype_t = wchar_t

Functions

iswalnum
int iswalnum(wint_t wc)
iswalpha
int iswalpha(wint_t wc)
iswblank
int iswblank(wint_t wc)
iswcntrl
int iswcntrl(wint_t wc)
iswctype
int iswctype(wint_t wc, wctype_t desc)
iswdigit
int iswdigit(wint_t wc)
iswgraph
int iswgraph(wint_t wc)
iswlower
int iswlower(wint_t wc)
iswprint
int iswprint(wint_t wc)
iswpunct
int iswpunct(wint_t wc)
iswspace
int iswspace(wint_t wc)
iswupper
int iswupper(wint_t wc)
iswxdigit
int iswxdigit(wint_t wc)
towctrans
wint_t towctrans(wint_t wc, wctrans_t desc)
towlower
wint_t towlower(wint_t wc)
towupper
wint_t towupper(wint_t wc)
wctrans
wctrans_t wctrans(char* property)
wctype
wctype_t wctype(char* property)

Meta

License

Distributed under the Boost Software License 1.0. (See accompanying file LICENSE)

Standards

ISO/IEC 9899:1999 (E)

Authors

Sean Kelly