+ 21.6 Strings library, Null-terminated sequence utilities: <cctype>, <cwctype>,...
[lightlibc++.git] / include / cwctype
blob8ef9cb597c0bab6d453c9b502b8745df2c5bc5fd
1 /*
2 Permission is granted to use, modify, and / or redistribute at will.
4 This includes removing authorship notices, re-use of code parts in
5 other software (with or without giving credit), and / or creating a
6 commercial product based on it.
8 This permission is not revocable by the author.
10 This software is provided as-is. Use it at your own risk. There is
11 no warranty whatsoever, neither expressed nor implied, and by using
12 this software you accept that the author(s) shall not be held liable
13 for any loss of data, loss of service, or other damages, be they
14 incidental or consequential. Your only option other than accepting
15 this is not to use the software at all.
17 #ifndef _LIGHTLIBCPP_CWCTYPE
18 #define _LIGHTLIBCPP_CWCTYPE
22 #include <wctype.h>
26 // NOTE: macro WEOF is taken from wctype.h
30 namespace std
32   typedef ::wctrans_t wctrans_t;
33   typedef ::wctype_t  wctype_t;
34   typedef ::wint_t    wint_t;
36   using ::iswalnum;
37   using ::iswalpha;
38   using ::iswcntrl;
39   using ::iswctype;
40   using ::iswdigit;
41   using ::iswgraph;
42   using ::iswlower;
43   using ::iswprint;
44   using ::iswpunct;
45   using ::iswspace;
46   using ::iswupper;
47   using ::iswxdigit;
48   using ::iswctrans;
49   using ::iswlower;
50   using ::iswupper;
51   using ::wctrans;
52   using ::wctype;
57 #endif