From 28075836bdd3771e55f97ee66f4d5d53d6c0e8d9 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 27 Nov 2008 14:17:13 +0000 Subject: - make isascii visible again TODO: *_l() should go --- include/ctype.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/ctype.h b/include/ctype.h index a2e457806..e45280f73 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -345,6 +345,15 @@ libc_hidden_proto(isxdigit_l) __exctype_l (isblank_l); libc_hidden_proto(isblank_l) +#if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN + +/* Return nonzero iff C is in the ASCII set + (i.e., is no more than 7 bits wide). */ +extern int isascii_l (int __c) __THROW; +libc_hidden_proto(isascii_l) + +#endif + /* Return the lowercase version of C in locale L. */ extern int __tolower_l (int __c, __locale_t __l) __THROW; extern int tolower_l (int __c, __locale_t __l) __THROW; -- cgit v1.2.3