diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ctype.h | 9 |
1 files changed, 9 insertions, 0 deletions
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; |