newlib/winsup/cygwin/include/wchar.h

30 lines
573 B
C
Raw Normal View History

2000-02-17 20:38:31 +01:00
/* wchar.h
2001-09-11 22:01:02 +02:00
Copyright 1998, 1999, 2000, 2001 Red Hat, Inc.
2000-02-17 20:38:31 +01:00
This file is part of Cygwin.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#ifndef _WCHAR_H
#define _WCHAR_H
#include <sys/cdefs.h>
/* Get wchar_t and wint_t from <stddef.h>. */
2000-02-17 20:38:31 +01:00
#define __need_wchar_t
#define __need_wint_t
#define __need_size_t
2000-02-17 20:38:31 +01:00
#include <stddef.h>
__BEGIN_DECLS
int wcscmp (const wchar_t *__s1, const wchar_t *__s2);
size_t wcslen (const wchar_t *__s1);
2000-02-17 20:38:31 +01:00
__END_DECLS
#endif /* _WCHAR_H */