Minor cleanups
[lightOS.git] / trunk / lib / libc / include / wchar.h
blob635a9cf4c0dc0c20d6f6e578661354f1e3271abb
1 /*
2 lightOS libc
3 Copyright (C) 2006-2008 Jörg Pfähler
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef LIGHTOS_LIBC_WCHAR_H
20 #define LIGHTOS_LIBC_WCHAR_H
24 * Standard includes
26 #include <stddef.h>
27 #include <stdint.h>
30 /*! \addtogroup libc libc */
31 /*@{*/
32 /*! \addtogroup libc_wchar ISO/IEC 9899:1999 - 7.24 - wchar.h
33 * ISO/IEC 9899:1999 7.24 Extended multibyte and wide character utilities */
34 /*@{*/
38 * Types
39 * ISO/IEC 9899:1999 7.24.1
41 #define WEOF (wint_t)-1
45 * Types
46 * ISO/IEC 9899:1999 7.24.1
49 // TODO: mbstate_t
50 // TODO: wint_t
52 /** Forward declaration of struct tm, see time.h */
53 struct tm;
55 #ifdef __cplusplus
56 extern "C"
59 #define restrict
60 #endif
64 * ISO/IEC 9899:1999 7.24.2 Formatted wide character input/output functions
66 // TODO
68 #ifdef __cplusplus
71 #undef restrict
72 #endif
75 /*@}*/
76 /*@}*/
78 #endif