sortix-mirror/libc/include/wchar.h

137 lines
5.1 KiB
C
Raw Normal View History

2012-09-28 22:36:46 +00:00
/*******************************************************************************
2011-08-05 12:25:00 +00:00
2013-03-23 23:25:50 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2013.
2011-08-05 12:25:00 +00:00
This file is part of the Sortix C Library.
2011-08-05 12:25:00 +00:00
The Sortix C Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
2011-08-05 12:25:00 +00:00
The Sortix C Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
2011-08-05 12:25:00 +00:00
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2011-08-05 12:25:00 +00:00
wchar.h
Wide character support.
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
*******************************************************************************/
2011-08-05 12:25:00 +00:00
2013-07-19 20:36:11 +00:00
#ifndef INCLUDE_WCHAR_H
#define INCLUDE_WCHAR_H
2011-08-05 12:25:00 +00:00
#include <features.h>
#include <sys/__/types.h>
#if __is_sortix_libc
#include <FILE.h>
#endif
2011-08-05 12:25:00 +00:00
__BEGIN_DECLS
@include(size_t.h)
@include(off_t.h)
2011-08-05 12:25:00 +00:00
@include(FILE.h)
@include(locale_t.h)
@include(va_list.h)
@include(wchar_t.h)
@include(wint_t.h)
@include(WCHAR_MAX.h)
@include(WCHAR_MIN.h)
@include(WEOF.h)
@include(NULL.h)
#ifndef __mbstate_t_defined
/* Conversion state information. */
typedef struct
{
int __count;
union
{
wint_t __wch;
2012-09-07 18:46:06 +00:00
char __wchb[4];
2011-08-05 12:25:00 +00:00
} __value; /* Value so far. */
} mbstate_t;
#define __mbstate_t_defined 1
#endif
struct tm;
size_t mbsrtowcs(wchar_t* __restrict, const char** __restrict, size_t, mbstate_t* __restrict);
size_t wcrtomb(char* __restrict, wchar_t, mbstate_t* __restrict);
2013-04-22 08:06:44 +00:00
size_t mbrlen(const char* __restrict, size_t, mbstate_t* __restrict);
size_t mbrtowc(wchar_t* __restrict, const char* __restrict, size_t, mbstate_t* __restrict);
wchar_t* wcscat(wchar_t* __restrict, const wchar_t* __restrict);
2013-03-23 23:37:22 +00:00
wchar_t* wcschr(const wchar_t*, wchar_t);
wchar_t* wcschrnul(const wchar_t*, wchar_t);
2013-03-23 23:41:35 +00:00
int wcscmp(const wchar_t*, const wchar_t*);
2013-07-19 20:49:25 +00:00
int wcscoll(const wchar_t*, const wchar_t*);
wchar_t* wcscpy(wchar_t* __restrict, const wchar_t* __restrict);
2013-03-23 23:54:34 +00:00
size_t wcscspn(const wchar_t*, const wchar_t*);
2013-03-23 23:29:31 +00:00
size_t wcslen(const wchar_t*);
wchar_t* wcsncat(wchar_t* __restrict, const wchar_t* __restrict, size_t);
2013-09-15 22:06:27 +00:00
int wcsncmp(const wchar_t*, const wchar_t*, size_t);
wchar_t* wcsncpy(wchar_t* __restrict, const wchar_t* __restrict, size_t);
2013-09-15 22:20:30 +00:00
wchar_t* wcspbrk(const wchar_t*, const wchar_t*);
2013-03-23 23:46:44 +00:00
wchar_t* wcsrchr(const wchar_t*, wchar_t);
size_t wcsrtombs(char* __restrict, const wchar_t** __restrict, size_t, mbstate_t* __restrict);
2013-03-23 23:52:40 +00:00
size_t wcsspn(const wchar_t*, const wchar_t*);
2013-09-16 12:41:16 +00:00
wchar_t* wcsstr(const wchar_t* __restrict, const wchar_t* __restrict);
wchar_t* wcstok(wchar_t* __restrict, const wchar_t* __restrict, wchar_t** __restrict);
2013-07-19 20:36:11 +00:00
long long wcstoll(const wchar_t* __restrict, wchar_t** __restrict, int);
long wcstol(const wchar_t* __restrict, wchar_t** __restrict, int);
unsigned long long wcstoull(const wchar_t* __restrict, wchar_t** __restrict, int);
unsigned long wcstoul(const wchar_t* __restrict, wchar_t** __restrict, int);
2013-09-15 22:14:06 +00:00
size_t wcsxfrm(wchar_t* __restrict, const wchar_t* __restrict, size_t);
2013-09-16 13:05:52 +00:00
wchar_t* wmemchr(const wchar_t*, wchar_t, size_t);
2013-09-15 22:01:19 +00:00
int wmemcmp(const wchar_t*, const wchar_t*, size_t);
2013-09-16 13:12:30 +00:00
wchar_t* wmemcpy(wchar_t* __restrict, const wchar_t* __restrict, size_t);
2013-09-16 13:37:27 +00:00
wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
2013-09-16 13:46:08 +00:00
wchar_t* wmemset(wchar_t*, wchar_t, size_t);
2012-09-28 22:53:50 +00:00
/* TODO: These are not implemented in sortix libc yet. */
#if 0
double wcstod(const wchar_t* __restrict, wchar_t** __restrict);
2011-08-05 12:25:00 +00:00
FILE* open_wmemstream(wchar_t** bufp, size_t* sizep);
float wcstof(const wchar_t* __restrict, wchar_t** __restrict);
int fputws(const wchar_t* __restrict, FILE* __restrict);
2011-08-05 12:25:00 +00:00
int fwide(FILE*, int);
int fwprintf(FILE* __restrict, const wchar_t* __restrict, ...);
int fwscanf(FILE* __restrict, const wchar_t* __restrict, ...);
2011-08-05 12:25:00 +00:00
int mbsinit(const mbstate_t*);
int swprintf(wchar_t* __restrict, size_t, const wchar_t* __restrict, ...);
int swscanf(const wchar_t* __restrict, const wchar_t* __restrict, ...);
int vfwprintf(FILE* __restrict, const wchar_t* __restrict, va_list);
int vfwscanf(FILE* __restrict, const wchar_t* __restrict, va_list);
int vswprintf(wchar_t* __restrict, size_t, const wchar_t* __restrict, va_list);
int vswscanf(const wchar_t* __restrict, const wchar_t* __restrict, va_list);
int vwprintf(const wchar_t* __restrict, va_list);
int vwscanf(const wchar_t* __restrict, va_list);
2011-08-05 12:25:00 +00:00
int wcswidth(const wchar_t*, size_t);
int wctob(wint_t);
int wcwidth(wchar_t);
int wprintf(const wchar_t* __restrict, ...);
int wscanf(const wchar_t* __restrict, ...);
long double wcstold(const wchar_t* __restrict, wchar_t** __restrict);
size_t wcsftime(wchar_t* __restrict, size_t, const wchar_t* __restrict, const struct tm* __restrict);
wchar_t* fgetws(wchar_t* __restrict, int, FILE* __restrict);
2011-08-05 12:25:00 +00:00
wint_t btowc(int);
wint_t fgetwc(FILE*);
wint_t fputwc(wchar_t, FILE*);
wint_t getwc(FILE*);
wint_t getwchar(void);
wint_t putwchar(wchar_t);
wint_t putwc(wchar_t, FILE*);
wint_t ungetwc(wint_t, FILE*);
#endif
__END_DECLS
#endif