diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/limits.h | 4 | ||||
-rw-r--r-- | include/wchar.h | 29 |
2 files changed, 24 insertions, 9 deletions
diff --git a/include/limits.h b/include/limits.h index 21520f3c94..71222d7a67 100644 --- a/include/limits.h +++ b/include/limits.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 96, 97, 98, 99 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -42,7 +42,7 @@ /* Maximum length of any multibyte character in any locale. We define this value here since the gcc header does not define the correct value. */ -#define MB_LEN_MAX 6 +#define MB_LEN_MAX 16 /* If we are not using GNU CC we have to define all the symbols ourself. diff --git a/include/wchar.h b/include/wchar.h index 33166edfdd..fb8ece58f2 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,32 +1,47 @@ #ifndef _WCHAR_H #include <wcsmbs/wchar.h> +# ifdef _WCHAR_H /* Now define the internal interfaces. */ extern int __wcscasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2)); extern int __wcsncasecmp __P ((__const wchar_t *__s1, __const wchar_t *__s2, size_t __n)); extern size_t __wcsnlen __P ((__const wchar_t *__s, size_t __maxlen)); extern wint_t __btowc __P ((int __c)); -extern int __mbsinit __P ((__const mbstate_t *__ps)); +extern int __mbsinit __P ((__const __mbstate_t *__ps)); extern size_t __mbrtowc __P ((wchar_t *__restrict __pwc, __const char *__restrict __s, size_t __n, - mbstate_t *__restrict __p)); + __mbstate_t *__restrict __p)); extern size_t __wcrtomb __P ((char *__restrict __s, wchar_t __wc, - mbstate_t *__restrict __ps)); + __mbstate_t *__restrict __ps)); extern size_t __mbsrtowcs __P ((wchar_t *__restrict __dst, __const char **__restrict __src, - size_t __len, mbstate_t *__restrict __ps)); + size_t __len, __mbstate_t *__restrict __ps)); extern size_t __wcsrtombs __P ((char *__restrict __dst, __const wchar_t **__restrict __src, - size_t __len, mbstate_t *__restrict __ps)); + size_t __len, __mbstate_t *__restrict __ps)); extern size_t __mbsnrtowcs __P ((wchar_t *__restrict __dst, __const char **__restrict __src, size_t __nmc, - size_t __len, mbstate_t *__restrict __ps)); + size_t __len, __mbstate_t *__restrict __ps)); extern size_t __wcsnrtombs __P ((char *__restrict __dst, __const wchar_t **__restrict __src, size_t __nwc, size_t __len, - mbstate_t *__restrict __ps)); + __mbstate_t *__restrict __ps)); extern wchar_t *__wcpcpy __P ((wchar_t *__dest, __const wchar_t *__src)); extern wchar_t *__wcpncpy __P ((wchar_t *__dest, __const wchar_t *__src, size_t __n)); +extern wchar_t *__wmemcpy __P ((wchar_t *__s1, __const wchar_t *s2, + size_t __n)); +extern wchar_t *__wmempcpy __P ((wchar_t *__restrict __s1, + __const wchar_t *__restrict __s2, + size_t __n)); +extern wchar_t *__wmemmove __P ((wchar_t *__s1, __const wchar_t *__s2, + size_t __n)); +extern wchar_t *__wcschrnul __P ((__const wchar_t *__s, wchar_t __wc)); + +extern int __vfwscanf __P ((FILE *__restrict __s, + __const wchar_t *__restrict __format, + va_list __arg)) + /* __attribute__ ((__format__ (__wscanf__, 2, 0))) */; +# endif #endif |