+ 21.6 Strings library, Null-terminated sequence utilities: <cctype>, <cwctype>,...
[lightlibc++.git] / include / cwchar
blob3eb30e1f3c4195d7ce2f8aba900f391d28d98436
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_CWCHAR
18 #define _LIGHTLIBCPP_CWCHAR
22 #include <wchar.h>
26 // NOTE: macros NULL, WCHAR_MAX, WCHAR_MIN, WEOF taken from wchar.h
30 namespace std
32   typedef ::mbstate_t mbstate_t;
34   using ::btowc;
35   using ::fgetwc;
36   using ::fgetws;
37   using ::fputwc;
38   using ::fputws;
39   using ::fwide;
40   using ::fwprintf;
41   using ::fwscanf;
42   using ::getwc;
43   using ::getwchar;
44   using ::mbrlen;
45   using ::mbrtowc;
46   using ::mbsinit;
47   using ::mbsrtowcs;
48   using ::putwc;
49   using ::putwchar;
50   using ::swprintf;
51   using ::swscanf;
52   using ::ungetwc;
53   using ::vfwprintf;
54   using ::vswprintf;
55   using ::vwprintf;
56   using ::wcrtomb;
57   using ::wcscat;
58   using ::wcschr;
59   using ::wcscmp;
60   using ::wcscoll;
61   using ::wcscpy;
62   using ::wcscspn;
63   using ::wcsftime;
64   using ::wcslen;
65   using ::wcsncat;
66   using ::wcsncmp;
67   using ::wcsncpy;
68   using ::wcspbrk;
69   using ::wcsrchr;
70   using ::wcsrtombs;
71   using ::wcsspn;
72   using ::wcsstr;
73   using ::wcstod;
74   using ::wcstok;
75   using ::wcstol;
76   using ::wcstoul;
77   using ::wcsxfrm;
78   using ::wctob;
79   using ::wmemchr;
80   using ::wmemcmp;
81   using ::wmemcpy;
82   using ::wmemmove;
83   using ::wmemset;
84   using ::wprintf;
85   using ::wscanf;
90 #endif