1 /* wchar.h 2 3 Copyright 1998 Cygnus Solutions 4 5 This file is part of Cygwin. 6 7 This software is a copyrighted work licensed under the terms of the 8 Cygwin license. Please consult the file "CYGWIN_LICENSE" for 9 details. */ 10 11 #ifndef _WCHAR_H 12 #define _WCHAR_H 13 14 #include <sys/cdefs.h> 15 16 /* Get wchar_t from <stddef.h>. */ 17 #define __need_wchar_t 18 #include <stddef.h> 19 20 __BEGIN_DECLS 21 22 int wcscmp (const wchar_t *__s1, const wchar_t *__s2); 23 size_t wcslen (const wchar_t *__s1); 24 25 __END_DECLS 26 27 #endif /* _WCHAR_H */ |