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_H 8 #define _WCHAR_H 9 10 #include <wchar_t.h> 11 12 #include <size_t.h> 13 14 int mbsinit(const mbstate_t *); 15 size_t wcrtomb(char *, wchar_t, mbstate_t *); 16 17 #endif /* _WCHAR_H */ 18