diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-09-01 18:27:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-09-01 18:27:42 +0000 |
commit | fa1861d9fc31366afbcb640ecfb64d7ce646de8d (patch) | |
tree | 086a5147163db12fd78f9d5c42ef18820b676a0c /ctype/ctype.h | |
parent | 1ba0f0895ac55dae377bc5b05c86110e86194ccc (diff) | |
download | glibc-fa1861d9fc31366afbcb640ecfb64d7ce646de8d.tar.gz |
Update.
2002-09-01 Ulrich Drepper <drepper@redhat.com>
* ctype/Makefile (routines): Add isctype.
* ctype/Versions (libc): Export isctype and __isctype for GLIBC_2.3.
* ctype/ctype.h: Add declaration of isctype.
* include/ctype.h: Declare __isctype.
* ctype/isctype.c: New file.
Diffstat (limited to 'ctype/ctype.h')
-rw-r--r-- | ctype/ctype.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ctype/ctype.h b/ctype/ctype.h index 9469907b27..64f5e4b7a0 100644 --- a/ctype/ctype.h +++ b/ctype/ctype.h @@ -104,6 +104,11 @@ __exctype (isblank); __END_NAMESPACE_C99 #endif +#ifdef __USE_GNU +/* Test C for a set of character classes according to MASK. */ +extern int isctype (int __c, int __mask) __THROW; +#endif + #if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN /* Return nonzero iff C is in the ASCII set |