mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-05 12:40:55 +08:00
fa1861d9fc
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.
22 lines
438 B
Plaintext
22 lines
438 B
Plaintext
libc {
|
|
GLIBC_2.0 {
|
|
# global variables
|
|
__ctype_b; __ctype32_b; __ctype_tolower; __ctype_toupper;
|
|
_tolower; _toupper;
|
|
|
|
# i*
|
|
isalnum; isalpha; isascii; isblank; iscntrl; isdigit; isgraph; islower;
|
|
isprint; ispunct; isspace; isupper; isxdigit;
|
|
|
|
# t*
|
|
toascii; tolower; toupper;
|
|
}
|
|
GLIBC_2.2 {
|
|
# global variables
|
|
__ctype32_tolower; __ctype32_toupper;
|
|
}
|
|
GLIBC_2.3 {
|
|
isctype; __isctype;
|
|
}
|
|
}
|