blob: 1dda4bd9c44f1f9b29d5818ebc7997fd9fa636eb [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 */
Elliott Hughes079bff42017-08-16 16:30:54 -070028
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029#ifndef _WCHAR_H_
30#define _WCHAR_H_
31
32#include <sys/cdefs.h>
33#include <stdio.h>
34
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035#include <stdarg.h>
Elliott Hughes0cc0d252012-10-01 15:12:40 -070036#include <stddef.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080037#include <time.h>
Elliott Hughesb20c2442014-11-06 15:04:08 -080038#include <xlocale.h>
Elliott Hughes83c07b52014-04-21 18:09:46 -070039
Elliott Hughes0fe88852016-07-27 10:45:05 -070040#include <bits/mbstate_t.h>
Elliott Hughes5704c422016-01-25 18:06:24 -080041#include <bits/wchar_limits.h>
Elliott Hughes7ba106c2016-04-28 18:22:06 -070042#include <bits/wctype.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080043
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080044__BEGIN_DECLS
45
Elliott Hughes079bff42017-08-16 16:30:54 -070046wint_t btowc(int __ch);
47int fwprintf(FILE* __fp, const wchar_t* __fmt, ...);
48int fwscanf(FILE* __fp, const wchar_t* __fmt, ...);
49wint_t fgetwc(FILE* __fp);
50wchar_t* fgetws(wchar_t* __buf, int __size, FILE* __fp);
51wint_t fputwc(wchar_t __wc, FILE* __fp);
52int fputws(const wchar_t* __s, FILE* __fp);
53int fwide(FILE* __fp, int __mode);
54wint_t getwc(FILE* __fp);
55wint_t getwchar(void);
56int mbsinit(const mbstate_t* __ps);
57size_t mbrlen(const char* __s, size_t __n, mbstate_t* __ps);
58size_t mbrtowc(wchar_t* __buf, const char* __s, size_t __n, mbstate_t* __ps);
59size_t mbsrtowcs(wchar_t* __dst, const char** __src, size_t __dst_n, mbstate_t* __ps);
60size_t mbsnrtowcs(wchar_t* __dst, const char** __src, size_t __src_n, size_t __dst_n, mbstate_t* __ps) __INTRODUCED_IN(21);
61wint_t putwc(wchar_t __wc, FILE* __fp);
62wint_t putwchar(wchar_t __wc);
63int swprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, ...);
64int swscanf(const wchar_t* __s, const wchar_t* __fmt, ...);
65wint_t ungetwc(wint_t __wc, FILE* __fp);
66int vfwprintf(FILE* __fp, const wchar_t* __fmt, va_list __args);
67int vfwscanf(FILE* __fp, const wchar_t* __fmt, va_list __args) __INTRODUCED_IN(21);
68int vswprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, va_list __args);
69int vswscanf(const wchar_t* __s, const wchar_t* __fmt, va_list __args) __INTRODUCED_IN(21);
70int vwprintf(const wchar_t* __fmt, va_list __args);
71int vwscanf(const wchar_t* __fmt, va_list __args) __INTRODUCED_IN(21);
72wchar_t* wcpcpy(wchar_t* __dst, const wchar_t* __src);
73wchar_t* wcpncpy(wchar_t* __dst, const wchar_t* __src, size_t __n);
74size_t wcrtomb(char* __buf, wchar_t __wc, mbstate_t* __ps);
75int wcscasecmp(const wchar_t* __lhs, const wchar_t* __rhs);
76int wcscasecmp_l(const wchar_t* __lhs, const wchar_t* __rhs, locale_t __l) __INTRODUCED_IN(23);
77wchar_t* wcscat(wchar_t* __dst, const wchar_t* __src);
78wchar_t* wcschr(const wchar_t* __s, wchar_t __wc);
79int wcscmp(const wchar_t* __lhs, const wchar_t* __rhs);
80int wcscoll(const wchar_t* __lhs, const wchar_t* __rhs);
81wchar_t* wcscpy(wchar_t* __dst, const wchar_t* __src);
82size_t wcscspn(const wchar_t* __s, const wchar_t* __accept);
83size_t wcsftime(wchar_t* __buf, size_t __n, const wchar_t* __fmt, const struct tm* __tm);
84size_t wcslen(const wchar_t* __s);
85int wcsncasecmp(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n);
86int wcsncasecmp_l(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n, locale_t __l) __INTRODUCED_IN(23);
87wchar_t* wcsncat(wchar_t* __dst, const wchar_t* __src, size_t __n);
88int wcsncmp(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n);
89wchar_t* wcsncpy(wchar_t* __dst, const wchar_t* __src, size_t __n);
90size_t wcsnrtombs(char* __dst, const wchar_t** __src, size_t __src_n, size_t __dst_n, mbstate_t* __ps) __INTRODUCED_IN(21);
91wchar_t* wcspbrk(const wchar_t* __s, const wchar_t* __accept);
92wchar_t* wcsrchr(const wchar_t* __s, wchar_t __wc);
93size_t wcsrtombs(char* __dst, const wchar_t** __src, size_t __dst_n, mbstate_t* __ps);
94size_t wcsspn(const wchar_t* __s, const wchar_t* __accept);
95wchar_t* wcsstr(const wchar_t* __haystack, const wchar_t* __needle);
96double wcstod(const wchar_t* __s, wchar_t** __end_ptr);
97float wcstof(const wchar_t* __s, wchar_t** __end_ptr) __INTRODUCED_IN(21);
98wchar_t* wcstok(wchar_t* __s, const wchar_t* __delimiter, wchar_t** __ptr);
99long wcstol(const wchar_t* __s, wchar_t** __end_ptr, int __base);
100long long wcstoll(const wchar_t* __s, wchar_t** __end_ptr, int __base) __INTRODUCED_IN(21);
101long double wcstold(const wchar_t* __s, wchar_t** __end_ptr) __INTRODUCED_IN(21);
102unsigned long wcstoul(const wchar_t* __s, wchar_t** __end_ptr, int __base);
103unsigned long long wcstoull(const wchar_t* __s, wchar_t** __end_ptr, int __base) __INTRODUCED_IN(21);
104int wcswidth(const wchar_t* __s, size_t __n);
105size_t wcsxfrm(wchar_t* __dst, const wchar_t* __src, size_t __n);
106int wctob(wint_t __wc);
107int wcwidth(wchar_t __wc);
108wchar_t* wmemchr(const wchar_t* __src, wchar_t __wc, size_t __n);
109int wmemcmp(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n);
110wchar_t* wmemcpy(wchar_t* __dst, const wchar_t* __src, size_t __n);
Elliott Hughes3cfb52a2015-02-18 21:29:13 -0800111#if defined(__USE_GNU)
Elliott Hughes079bff42017-08-16 16:30:54 -0700112wchar_t* wmempcpy(wchar_t* __dst, const wchar_t* __src, size_t __n) __INTRODUCED_IN(23);
Elliott Hughes3cfb52a2015-02-18 21:29:13 -0800113#endif
Elliott Hughes079bff42017-08-16 16:30:54 -0700114wchar_t* wmemmove(wchar_t* __dst, const wchar_t* __src, size_t __n);
115wchar_t* wmemset(wchar_t* __dst, wchar_t __wc, size_t __n);
116int wprintf(const wchar_t* __fmt, ...);
117int wscanf(const wchar_t* __fmt, ...);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800118
Elliott Hughes5bc78c82016-11-16 11:35:43 -0800119#if __ANDROID_API__ >= __ANDROID_API_L__
Elliott Hughes079bff42017-08-16 16:30:54 -0700120long long wcstoll_l(const wchar_t* __s, wchar_t** __end_ptr, int __base, locale_t __l) __INTRODUCED_IN(21);
121unsigned long long wcstoull_l(const wchar_t* __s, wchar_t** __end_ptr, int __base, locale_t __l) __INTRODUCED_IN(21);
122long double wcstold_l(const wchar_t* __s, wchar_t** __end_ptr, locale_t __l) __INTRODUCED_IN(21);
Dan Albertdfb5ce42014-07-09 22:51:34 +0000123
Elliott Hughes079bff42017-08-16 16:30:54 -0700124int wcscoll_l(const wchar_t* __lhs, const wchar_t* __rhs, locale_t __l) __attribute_pure__
Dan Albertf45d76a2016-09-21 01:57:51 -0700125 __INTRODUCED_IN(21);
Elliott Hughes079bff42017-08-16 16:30:54 -0700126size_t wcsxfrm_l(wchar_t* __dst, const wchar_t* __src, size_t __n, locale_t __l) __INTRODUCED_IN(21);
Josh Gao6cd9fb02016-09-23 14:06:05 -0700127#else
128// Implemented as static inlines before 21.
129#endif
Dan Albertdfb5ce42014-07-09 22:51:34 +0000130
Elliott Hughes079bff42017-08-16 16:30:54 -0700131size_t wcslcat(wchar_t* __dst, const wchar_t* __src, size_t __n);
132size_t wcslcpy(wchar_t* __dst, const wchar_t* __src, size_t __n);
Elliott Hughes53e43292014-02-24 18:00:43 -0800133
Elliott Hughes079bff42017-08-16 16:30:54 -0700134FILE* open_wmemstream(wchar_t** __ptr, size_t* __size_ptr) __INTRODUCED_IN(23);
135wchar_t* wcsdup(const wchar_t* __s);
136size_t wcsnlen(const wchar_t* __s, size_t __n);
Elliott Hugheseb93ebf2013-03-01 18:35:56 -0800137
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800138__END_DECLS
139
Elliott Hughes079bff42017-08-16 16:30:54 -0700140#endif