root/trunk/tango/stdc/wctype.d
| Revision 3924, 0.7 kB (checked in by sean, 4 years ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /** |
| 2 | * D header file for C99. |
| 3 | * |
| 4 | * Copyright: Public Domain |
| 5 | * License: Public Domain |
| 6 | * Authors: Sean Kelly |
| 7 | * Standards: ISO/IEC 9899:1999 (E) |
| 8 | */ |
| 9 | module tango.stdc.wctype; |
| 10 | |
| 11 | private import tango.stdc.stddef; |
| 12 | |
| 13 | extern (C): |
| 14 | |
| 15 | int iswalnum(wint_t wc); |
| 16 | int iswalpha(wint_t wc); |
| 17 | int iswblank(wint_t wc); |
| 18 | int iswcntrl(wint_t wc); |
| 19 | int iswdigit(wint_t wc); |
| 20 | int iswgraph(wint_t wc); |
| 21 | int iswlower(wint_t wc); |
| 22 | int iswprint(wint_t wc); |
| 23 | int iswpunct(wint_t wc); |
| 24 | int iswspace(wint_t wc); |
| 25 | int iswupper(wint_t wc); |
| 26 | int iswxdigit(wint_t wc); |
| 27 | |
| 28 | int iswctype(wint_t wc, wctype_t desc); |
| 29 | wctype_t wctype(in char* property); |
| 30 | wint_t towlower(wint_t wc); |
| 31 | wint_t towupper(wint_t wc); |
| 32 | wint_t towctrans(wint_t wc, wctrans_t desc); |
| 33 | wctrans_t wctrans(in char* property); |
Note: See TracBrowser for help on using the browser.












