From 60c75a960a6f48086918cee55c8c043b5d0eb1a3 Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Mon, 5 May 2008 19:32:23 +0200 Subject: Fix some compiler warnings if compiling without system wide character functions --- mbyte.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'mbyte.h') diff --git a/mbyte.h b/mbyte.h index a9a97a20..5691fda5 100644 --- a/mbyte.h +++ b/mbyte.h @@ -20,11 +20,19 @@ #ifdef iswalnum # undef iswalnum #endif +#ifdef iswalpha +# undef iswalpha +#endif +#ifdef iswupper +# undef iswupper +#endif size_t wcrtomb (char *s, wchar_t wc, mbstate_t *ps); size_t mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps); int iswprint (wint_t wc); int iswspace (wint_t wc); int iswalnum (wint_t wc); +int iswalpha (wint_t wc); +int iswupper (wint_t wc); wint_t towupper (wint_t wc); wint_t towlower (wint_t wc); int wcwidth (wchar_t wc); -- cgit v1.2.3