Install msysDVLPR-1.0.0-alpha-1
[msysgit.git] / include / wchar.h
blobeabdaa725a747f4dc105658417ecae32084df5a4
1 /* wchar.h
3 Copyright 1998, 1999, 2000, 2001 Red Hat, Inc.
5 This file is part of Cygwin.
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. */
11 #ifndef _WCHAR_H
12 #define _WCHAR_H
14 #include <sys/cdefs.h>
16 /* Get wchar_t and wint_t from <stddef.h>. */
17 #define __need_wchar_t
18 #define __need_wint_t
19 #include <stddef.h>
21 __BEGIN_DECLS
23 int wcscmp (const wchar_t *__s1, const wchar_t *__s2);
24 size_t wcslen (const wchar_t *__s1);
26 __END_DECLS
28 #endif /* _WCHAR_H */