blob: 6251868da973c8b9694a52df054e954c7527b7e9 [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>
Elliott Hughes83c07b52014-04-21 18:09:46 -070037
38#include <machine/wchar_limits.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080040__BEGIN_DECLS
41
Calin Juravleeab395e2014-04-29 15:48:34 +010042typedef __WINT_TYPE__ wint_t;
43typedef struct {
44#ifdef __LP32__
45 int dummy;
46#else
47 // 8 bytes should be enough to support at least UTF-8
48 char __reserved[8];
49#endif
50} mbstate_t;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080051
52typedef enum {
53 WC_TYPE_INVALID = 0,
54 WC_TYPE_ALNUM,
55 WC_TYPE_ALPHA,
56 WC_TYPE_BLANK,
57 WC_TYPE_CNTRL,
58 WC_TYPE_DIGIT,
59 WC_TYPE_GRAPH,
60 WC_TYPE_LOWER,
61 WC_TYPE_PRINT,
62 WC_TYPE_PUNCT,
63 WC_TYPE_SPACE,
64 WC_TYPE_UPPER,
65 WC_TYPE_XDIGIT,
66 WC_TYPE_MAX
67} wctype_t;
68
David 'Digit' Turner50ace4f2010-06-16 16:36:41 -070069#define WEOF ((wint_t)(-1))
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080070
71extern wint_t btowc(int);
72extern int fwprintf(FILE *, const wchar_t *, ...);
73extern int fwscanf(FILE *, const wchar_t *, ...);
74extern int iswalnum(wint_t);
75extern int iswalpha(wint_t);
Elliott Hughes40b05792014-04-15 12:04:05 -070076extern int iswblank(wint_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080077extern int iswcntrl(wint_t);
78extern int iswdigit(wint_t);
79extern int iswgraph(wint_t);
80extern int iswlower(wint_t);
81extern int iswprint(wint_t);
82extern int iswpunct(wint_t);
83extern int iswspace(wint_t);
84extern int iswupper(wint_t);
85extern int iswxdigit(wint_t);
86extern int iswctype(wint_t, wctype_t);
87extern wint_t fgetwc(FILE *);
88extern wchar_t *fgetws(wchar_t *, int, FILE *);
89extern wint_t fputwc(wchar_t, FILE *);
90extern int fputws(const wchar_t *, FILE *);
91extern int fwide(FILE *, int);
92extern wint_t getwc(FILE *);
93extern wint_t getwchar(void);
94extern int mbsinit(const mbstate_t *);
95extern size_t mbrlen(const char *, size_t, mbstate_t *);
96extern size_t mbrtowc(wchar_t *, const char *, size_t, mbstate_t *);
97extern size_t mbsrtowcs(wchar_t *, const char **, size_t, mbstate_t *);
Dan Bornstein03c643b2009-11-10 12:15:33 -080098extern size_t mbstowcs(wchar_t *, const char *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080099extern wint_t putwc(wchar_t, FILE *);
100extern wint_t putwchar(wchar_t);
101extern int swprintf(wchar_t *, size_t, const wchar_t *, ...);
102extern int swscanf(const wchar_t *, const wchar_t *, ...);
103extern wint_t towlower(wint_t);
104extern wint_t towupper(wint_t);
105extern wint_t ungetwc(wint_t, FILE *);
106extern int vfwprintf(FILE *, const wchar_t *, va_list);
107extern int vwprintf(const wchar_t *, va_list);
108extern int vswprintf(wchar_t *, size_t, const wchar_t *, va_list);
109extern size_t wcrtomb(char *, wchar_t, mbstate_t *);
tedbo16e02c22010-11-29 13:15:07 -0800110extern int wcscasecmp(const wchar_t *, const wchar_t *);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800111extern wchar_t *wcscat(wchar_t *, const wchar_t *);
112extern wchar_t *wcschr(const wchar_t *, wchar_t);
113extern int wcscmp(const wchar_t *, const wchar_t *);
114extern int wcscoll(const wchar_t *, const wchar_t *);
115extern wchar_t *wcscpy(wchar_t *, const wchar_t *);
116extern size_t wcscspn(const wchar_t *, const wchar_t *);
117extern size_t wcsftime(wchar_t *, size_t, const wchar_t *, const struct tm *);
118extern size_t wcslen(const wchar_t *);
tedbo16e02c22010-11-29 13:15:07 -0800119extern int wcsncasecmp(const wchar_t *, const wchar_t *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800120extern wchar_t *wcsncat(wchar_t *, const wchar_t *, size_t);
121extern int wcsncmp(const wchar_t *, const wchar_t *, size_t);
122extern wchar_t *wcsncpy(wchar_t *, const wchar_t *, size_t);
123extern wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
124extern wchar_t *wcsrchr(const wchar_t *, wchar_t);
125extern size_t wcsrtombs(char *, const wchar_t **, size_t, mbstate_t *);
126extern size_t wcsspn(const wchar_t *, const wchar_t *);
127extern wchar_t *wcsstr(const wchar_t *, const wchar_t *);
128extern double wcstod(const wchar_t *, wchar_t **);
129extern wchar_t *wcstok(wchar_t *, const wchar_t *, wchar_t **);
130extern long int wcstol(const wchar_t *, wchar_t **, int);
Dan Bornstein03c643b2009-11-10 12:15:33 -0800131extern size_t wcstombs(char *, const wchar_t *, size_t);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800132extern unsigned long int wcstoul(const wchar_t *, wchar_t **, int);
133extern wchar_t *wcswcs(const wchar_t *, const wchar_t *);
134extern int wcswidth(const wchar_t *, size_t);
135extern size_t wcsxfrm(wchar_t *, const wchar_t *, size_t);
136extern int wctob(wint_t);
137extern wctype_t wctype(const char *);
138extern int wcwidth(wchar_t);
139extern wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
140extern int wmemcmp(const wchar_t *, const wchar_t *, size_t);
141extern wchar_t *wmemcpy(wchar_t *, const wchar_t *, size_t);
142extern wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
143extern wchar_t *wmemset(wchar_t *, wchar_t, size_t);
144extern int wprintf(const wchar_t *, ...);
145extern int wscanf(const wchar_t *, ...);
146
Elliott Hughes53e43292014-02-24 18:00:43 -0800147extern size_t wcslcat(wchar_t*, const wchar_t*, size_t);
148extern size_t wcslcpy(wchar_t*, const wchar_t*, size_t);
149
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800150typedef void *wctrans_t;
Elliott Hughes77e944f2014-04-04 17:34:51 -0700151extern wint_t towctrans(wint_t, wctrans_t);
152extern wctrans_t wctrans(const char*);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800153
Elliott Hughes77e944f2014-04-04 17:34:51 -0700154#if __POSIX_VISIBLE >= 200809
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800155wchar_t* wcsdup(const wchar_t*);
156size_t wcsnlen(const wchar_t*, size_t);
157#endif
158
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800159__END_DECLS
160
161#endif /* _WCHAR_H_ */