2002-10-23 22:47:12 +04:00
|
|
|
/*
|
2011-05-30 22:44:22 +04:00
|
|
|
* Copyright 2008-2011 Haiku Inc. All Rights Reserved.
|
2008-08-19 23:28:41 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
2002-10-23 22:47:12 +04:00
|
|
|
*/
|
2003-12-30 10:37:08 +03:00
|
|
|
#ifndef _WCHAR_H
|
|
|
|
#define _WCHAR_H
|
2002-10-23 22:47:12 +04:00
|
|
|
|
2009-11-09 11:43:32 +03:00
|
|
|
|
2008-03-16 20:21:37 +03:00
|
|
|
#include <stddef.h>
|
2006-03-16 17:42:04 +03:00
|
|
|
#include <stdio.h>
|
2003-12-30 10:37:08 +03:00
|
|
|
|
2009-11-09 11:43:32 +03:00
|
|
|
|
2008-05-11 01:30:34 +04:00
|
|
|
/* stddef.h is not supposed to define wint_t, but gcc 2.95.3's one does.
|
|
|
|
* In all other cases we will do that. */
|
2008-03-16 20:21:37 +03:00
|
|
|
#ifndef _WINT_T
|
2005-02-22 21:06:35 +03:00
|
|
|
#define _WINT_T
|
2008-03-16 20:21:37 +03:00
|
|
|
|
|
|
|
#ifndef __WINT_TYPE__
|
|
|
|
#define __WINT_TYPE__ unsigned int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef __WINT_TYPE__ wint_t;
|
|
|
|
|
2008-05-11 01:30:34 +04:00
|
|
|
#endif /* _WINT_T */
|
2008-03-16 20:21:37 +03:00
|
|
|
|
2006-03-16 14:09:43 +03:00
|
|
|
typedef int wctype_t;
|
2005-02-22 21:06:35 +03:00
|
|
|
|
|
|
|
typedef struct {
|
2006-03-16 17:42:04 +03:00
|
|
|
int __count;
|
|
|
|
wint_t __value;
|
2005-02-22 21:06:35 +03:00
|
|
|
} mbstate_t;
|
|
|
|
|
2003-12-30 10:37:08 +03:00
|
|
|
|
2009-06-22 23:48:36 +04:00
|
|
|
#define WEOF ((wint_t)(-1))
|
|
|
|
|
|
|
|
#define WCHAR_MIN 0x00000000UL
|
|
|
|
#define WCHAR_MAX 0x7FFFFFFFUL
|
|
|
|
|
2010-07-24 03:13:00 +04:00
|
|
|
/*
|
|
|
|
* Haiku is always using UTF32 in wchars, other encodings can be handled
|
|
|
|
* by converting to/from wchar by means of mbsrtowcs() or wcsrtombs().
|
|
|
|
* TODO: define __STDC_ISO_10646__ accordingly in our compilers.
|
|
|
|
*/
|
|
|
|
|
2009-06-22 23:48:36 +04:00
|
|
|
|
2007-03-04 05:31:43 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-06-22 23:48:36 +04:00
|
|
|
extern wint_t btowc(int);
|
|
|
|
|
2006-03-16 14:09:43 +03:00
|
|
|
extern wint_t fgetwc(FILE *);
|
|
|
|
extern wchar_t *fgetws(wchar_t *, int, FILE *);
|
|
|
|
extern wint_t fputwc(wchar_t, FILE *);
|
2006-03-16 17:42:04 +03:00
|
|
|
extern int fputws(const wchar_t *, FILE *);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern int fwide(FILE *, int);
|
|
|
|
extern int fwprintf(FILE *, const wchar_t *, ...);
|
2010-07-23 21:34:33 +04:00
|
|
|
extern int fwscanf(FILE *, const wchar_t *, ...);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern wint_t getwc(FILE *);
|
|
|
|
extern wint_t getwchar(void);
|
|
|
|
|
|
|
|
extern size_t mbrlen(const char *s, size_t n, mbstate_t *ps);
|
|
|
|
extern size_t mbrtowc(wchar_t *pwc, const char *s, size_t n, mbstate_t *ps);
|
|
|
|
extern int mbsinit(const mbstate_t *);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern size_t mbsrtowcs(wchar_t *dst, const char **src, size_t len,
|
|
|
|
mbstate_t *ps);
|
|
|
|
|
|
|
|
extern wint_t putwc(wchar_t, FILE *);
|
|
|
|
extern wint_t putwchar(wchar_t);
|
|
|
|
|
|
|
|
extern int swprintf(wchar_t *, size_t, const wchar_t *, ...);
|
2009-07-29 21:41:10 +04:00
|
|
|
extern int swscanf(const wchar_t *, const wchar_t *, ...);
|
2006-03-16 14:09:43 +03:00
|
|
|
|
|
|
|
extern wint_t ungetwc(wint_t, FILE *);
|
|
|
|
|
2009-06-22 23:48:36 +04:00
|
|
|
extern int vfwprintf(FILE *, const wchar_t *, va_list);
|
2009-07-29 21:41:10 +04:00
|
|
|
extern int vfwscanf(FILE *, const wchar_t *, va_list);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern int vswprintf(wchar_t *, size_t, const wchar_t *, va_list);
|
2009-07-29 21:41:10 +04:00
|
|
|
extern int vswscanf(const wchar_t *, const wchar_t *, va_list);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern int vwprintf(const wchar_t *, va_list);
|
2009-07-29 21:41:10 +04:00
|
|
|
extern int vwscanf(const wchar_t *, va_list);
|
2009-06-22 23:48:36 +04:00
|
|
|
|
2006-03-16 14:09:43 +03:00
|
|
|
extern size_t wcrtomb(char *, wchar_t, mbstate_t *);
|
|
|
|
extern wchar_t *wcscat(wchar_t *, const wchar_t *);
|
|
|
|
extern wchar_t *wcschr(const wchar_t *, wchar_t);
|
|
|
|
extern int wcscmp(const wchar_t *ws1, const wchar_t *ws2);
|
|
|
|
extern int wcscoll(const wchar_t *ws1, const wchar_t *ws2);
|
|
|
|
extern wchar_t *wcscpy(wchar_t *, const wchar_t *);
|
|
|
|
extern size_t wcscspn(const wchar_t *, const wchar_t *);
|
2009-11-21 18:26:19 +03:00
|
|
|
extern wchar_t *wcsdup(const wchar_t *);
|
2010-07-23 21:34:33 +04:00
|
|
|
extern size_t wcsftime(wchar_t *, size_t, const wchar_t *, const struct tm *);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern size_t wcslen(const wchar_t *);
|
|
|
|
extern wchar_t *wcsncat(wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern int wcsncmp(const wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern wchar_t *wcsncpy(wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern wchar_t *wcspbrk(const wchar_t *, const wchar_t *);
|
|
|
|
extern wchar_t *wcsrchr(const wchar_t *, wchar_t);
|
|
|
|
extern size_t wcsrtombs(char *dst, const wchar_t **src, size_t len,
|
|
|
|
mbstate_t *ps);
|
|
|
|
extern size_t wcsspn(const wchar_t *, const wchar_t *);
|
2009-08-01 02:16:58 +04:00
|
|
|
extern wchar_t *wcsstr(const wchar_t *, const wchar_t *);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern double wcstod(const wchar_t *, wchar_t **);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern float wcstof(const wchar_t *, wchar_t **);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern wchar_t *wcstok(wchar_t *, const wchar_t *, wchar_t **);
|
2009-11-09 11:43:32 +03:00
|
|
|
extern long wcstol(const wchar_t *, wchar_t **, int);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern long double wcstold(const wchar_t *, wchar_t **);
|
|
|
|
extern long long wcstoll(const wchar_t *, wchar_t **, int);
|
|
|
|
extern unsigned long wcstoul(const wchar_t *, wchar_t **, int);
|
|
|
|
extern unsigned long long wcstoull(const wchar_t *, wchar_t **, int);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern wchar_t *wcswcs(const wchar_t *, const wchar_t *);
|
|
|
|
extern int wcswidth(const wchar_t *, size_t);
|
|
|
|
extern size_t wcsxfrm(wchar_t *, const wchar_t *, size_t);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern int wctob(wint_t);
|
2006-03-16 14:09:43 +03:00
|
|
|
extern int wcwidth(wchar_t);
|
2009-06-22 23:48:36 +04:00
|
|
|
extern wchar_t *wmemchr(const wchar_t *, wchar_t, size_t);
|
|
|
|
extern int wmemcmp(const wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern wchar_t *wmemcpy(wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t);
|
|
|
|
extern wchar_t *wmemset(wchar_t *, wchar_t, size_t);
|
|
|
|
extern int wprintf(const wchar_t *, ...);
|
2009-07-29 21:41:10 +04:00
|
|
|
extern int wscanf(const wchar_t *, ...);
|
2006-03-15 02:18:32 +03:00
|
|
|
|
2007-03-04 05:31:43 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-12-30 10:37:08 +03:00
|
|
|
#endif /* _WCHAR_H */
|