blob: 32cf127636a6ae019cc769919d91d6d8e82e5781 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28#ifndef _WCHAR_H_
29#define _WCHAR_H_
30
31#include <sys/cdefs.h>
32#include <stdio.h>
33
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034#include <stdarg.h>
Elliott Hughes0cc0d252012-10-01 15:12:40 -070035#include <stddef.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080036#include <time.h>
37#include <malloc.h>
38
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039/* IMPORTANT: Any code that relies on wide character support is essentially
40 * non-portable and/or broken. the only reason this header exist
41 * is because I'm really a nice guy. However, I'm not nice enough
42 * to provide you with a real implementation. instead wchar_t == char
43 * and all wc functions are stubs to their "normal" equivalent...
44 */
45
46__BEGIN_DECLS
47
Sergey Melnikova437bff2012-11-21 19:42:19 +040048typedef __WINT_TYPE__ wint_t;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080049typedef struct { int dummy; } mbstate_t;
50
51typedef enum {
52 WC_TYPE_INVALID = 0,
53 WC_TYPE_ALNUM,
54 WC_TYPE_ALPHA,
55 WC_TYPE_BLANK,
56 WC_TYPE_CNTRL,
57 WC_TYPE_DIGIT,
58 WC_TYPE_GRAPH,
59 WC_TYPE_LOWER,
60 WC_TYPE_PRINT,
61 WC_TYPE_PUNCT,
62 WC_TYPE_SPACE,
63 WC_TYPE_UPPER,
64 WC_TYPE_XDIGIT,
65 WC_TYPE_MAX
66} wctype_t;
67
Elliott Hughes7c895062013-06-13 16:02:53 -070068#ifndef WCHAR_MAX
David 'Digit' Turner3527fd62010-06-14 17:18:35 -070069#define WCHAR_MAX INT_MAX
70#define WCHAR_MIN INT_MIN
Elliott Hughes7c895062013-06-13 16:02:53 -070071#endif
72
David 'Digit' Turner50ace4f2010-06-16 16:36:41 -070073#define WEOF ((wint_t)(-1))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074
75extern wint_t btowc(int);
76extern int fwprintf(FILE *, const wchar_t *, ...);
77extern int fwscanf(FILE *, const wchar_t *, ...);
78extern int iswalnum(wint_t);
79extern int iswalpha(wint_t);
80extern int iswcntrl(wint_t);
81extern int iswdigit(wint_t);
82extern int iswgraph(wint_t);
83extern int iswlower(wint_t);
84extern int iswprint(wint_t);
85extern int iswpunct(wint_t);
86extern int iswspace(wint_t);
87extern int iswupper(wint_t);
88extern int iswxdigit(wint_t);
89extern int iswctype(wint_t, wctype_t);
90extern wint_t fgetwc(FILE *);
91extern wchar_t *fgetws(wchar_t *, int, FILE *);
92extern wint_t fputwc(wchar_t, FILE *);
93extern int fputws(const wchar_t *, FILE *);
94extern int fwide(FILE *, int);
95extern wint_t getwc(FILE *);
96extern wint_t getwchar(void);
97extern int mbsinit(const mbstate_t *);
98extern size_t mbrlen(const char *, size_t, mbstate_t *);
99extern size_t mbrtowc(wchar_t *, const char *, size_t, mbstate_t *);
100extern size_t mbsrtowcs(wchar_t *, const char **, size_t, mbstate_t *);
Dan Bornstein03c643b2009-11-10 12:15:33 -0800101extern size_t mbstowcs(wchar_t *, const char *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800102extern wint_t putwc(wchar_t, FILE *);
103extern wint_t putwchar(wchar_t);
104extern int swprintf(wchar_t *, size_t, const wchar_t *, ...);
105extern int swscanf(const wchar_t *, const wchar_t *, ...);
106extern wint_t towlower(wint_t);
107extern wint_t towupper(wint_t);
108extern wint_t ungetwc(wint_t, FILE *);
109extern int vfwprintf(FILE *, const wchar_t *, va_list);
110extern int vwprintf(const wchar_t *, va_list);
111extern int vswprintf(wchar_t *, size_t, const wchar_t *, va_list);
112extern size_t wcrtomb(char *, wchar_t, mbstate_t *);
tedbo16e02c22010-11-29 13:15:07 -0800113extern int wcscasecmp(const wchar_t *, const wchar_t *);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800114extern wchar_t *wcscat(wchar_t *, const wchar_t *);
115extern wchar_t *wcschr(const wchar_t *, wchar_t);
116extern int wcscmp(const wchar_t *, const wchar_t *);
117extern int wcscoll(const wchar_t *, const wchar_t *);
118extern wchar_t *wcscpy(wchar_t *, const wchar_t *);
119extern size_t wcscspn(const wchar_t *, const wchar_t *);
120extern size_t wcsftime(wchar_t *, size_t, const wchar_t *, const struct tm *);
121extern size_t wcslen(const wchar_t *);
tedbo16e02c22010-11-29 13:15:07 -0800122extern int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800123extern wchar_t *wcsncat(wchar_t *, const wchar_t *, size_t);
124extern int wcsncmp(const wchar_t *, const wchar_t *, size_t);
125extern wchar_t *wcsncpy(wchar_t *, const wchar_t *, size_t);
126extern wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
127extern wchar_t *wcsrchr(const wchar_t *, wchar_t);
128extern size_t wcsrtombs(char *, const wchar_t **, size_t, mbstate_t *);
129extern size_t wcsspn(const wchar_t *, const wchar_t *);
130extern wchar_t *wcsstr(const wchar_t *, const wchar_t *);
131extern double wcstod(const wchar_t *, wchar_t **);
132extern wchar_t *wcstok(wchar_t *, const wchar_t *, wchar_t **);
133extern long int wcstol(const wchar_t *, wchar_t **, int);
Dan Bornstein03c643b2009-11-10 12:15:33 -0800134extern size_t wcstombs(char *, const wchar_t *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800135extern unsigned long int wcstoul(const wchar_t *, wchar_t **, int);
136extern wchar_t *wcswcs(const wchar_t *, const wchar_t *);
137extern int wcswidth(const wchar_t *, size_t);
138extern size_t wcsxfrm(wchar_t *, const wchar_t *, size_t);
139extern int wctob(wint_t);
140extern wctype_t wctype(const char *);
141extern int wcwidth(wchar_t);
142extern wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
143extern int wmemcmp(const wchar_t *, const wchar_t *, size_t);
144extern wchar_t *wmemcpy(wchar_t *, const wchar_t *, size_t);
145extern wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
146extern wchar_t *wmemset(wchar_t *, wchar_t, size_t);
147extern int wprintf(const wchar_t *, ...);
148extern int wscanf(const wchar_t *, ...);
149
Elliott Hughes53e43292014-02-24 18:00:43 -0800150extern size_t wcslcat(wchar_t*, const wchar_t*, size_t);
151extern size_t wcslcpy(wchar_t*, const wchar_t*, size_t);
152
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800153/* No really supported. These are just for making libstdc++-v3 happy. */
154typedef void *wctrans_t;
155extern wint_t towctrans(wint_t, wctrans_t);
156extern wctrans_t wctrans (const char *);
157
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800158#if _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L
159wchar_t* wcsdup(const wchar_t*);
160size_t wcsnlen(const wchar_t*, size_t);
161#endif
162
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800163__END_DECLS
164
165#endif /* _WCHAR_H_ */