Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wchar.h « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 986db98814937567c7b4985a883f1f23384ec315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* wchar.h

   Copyright 1998 Cygnus Solutions

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 from <stddef.h>.  */
#define __need_wchar_t
#include <stddef.h>

__BEGIN_DECLS

int wcscmp (const wchar_t *__s1, const wchar_t *__s2);
size_t wcslen (const wchar_t *__s1);

__END_DECLS

#endif /* _WCHAR_H */