xref: /haiku/headers/posix/wchar_t.h (revision 51978af14a173e7fae0563b562be5603bc652aeb)
1 /*
2  * Copyright (C) 2002 Marcus Overhagen
3  * All rights reserved.
4  *
5  * Distributed under the terms of the MIT license
6  */
7 #ifndef _WCHAR_T_H
8 #define _WCHAR_T_H
9 
10 typedef unsigned short wchar_t;
11 
12 #define _WINT_T
13 typedef unsigned int wint_t;
14 
15 typedef struct {
16 	int		__count;
17 	wint_t	__value;
18 } mbstate_t;
19 
20 #endif	/* _WCHAR_T_H */
21 
22