summaryrefslogtreecommitdiffstats
path: root/mbyte.h
diff options
context:
space:
mode:
authorRocco Rutte <pdmef@gmx.net>2008-05-05 19:32:23 +0200
committerRocco Rutte <pdmef@gmx.net>2008-05-05 19:32:23 +0200
commit60c75a960a6f48086918cee55c8c043b5d0eb1a3 (patch)
tree3fa448be9c09a681ba9fa0a20c0bab2637d129ae /mbyte.h
parentdbae6e1e3925284f501dfbd53f71c685453da7fb (diff)
Fix some compiler warnings if compiling without system wide character functions
Diffstat (limited to 'mbyte.h')
-rw-r--r--mbyte.h8
1 files changed, 8 insertions, 0 deletions
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);