diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-10 09:47:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-10 09:47:59 +0000 |
commit | b77e6cd62103be90cd9cdd8e24372cb5324916ad (patch) | |
tree | df25857397237d37391fc0727d43e3fbead27a7b /wctype | |
parent | 8632b24036502a41a4e2648cd892d2c4be1e0f73 (diff) | |
download | glibc-b77e6cd62103be90cd9cdd8e24372cb5324916ad.tar glibc-b77e6cd62103be90cd9cdd8e24372cb5324916ad.tar.gz glibc-b77e6cd62103be90cd9cdd8e24372cb5324916ad.tar.bz2 glibc-b77e6cd62103be90cd9cdd8e24372cb5324916ad.zip |
Update.
1998-12-10 Ulrich Drepper <drepper@cygnus.com>
* inet/getnetgrent_r.c (innetgr): Check host and domain name with
strcasecmp, not strcmp. [PR libc/894].
1998-12-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* posix/regex.h: Declare re_comp, re_exec if compiling for libc to
get prototypes.
* wctype/wctype.h: Add prototypes for __iswblank_l and iswblank.
1998-12-08 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/gethostid.c: Include <netdb.h> to get
prototype for __gethostbyname_r.
* include/time.h: Add declarations of internal interfaces.
* time/tzset.c: Remove declarations of internal interfaces.
* time/gmtime.c: Likewise.
* time/localtime.c: Likewise.
* time/offtime.c: Likewise.
* time/tzfile.c: Likewise.
Diffstat (limited to 'wctype')
-rw-r--r-- | wctype/wctype.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wctype/wctype.h b/wctype/wctype.h index 710275888a..c4f4f6ca02 100644 --- a/wctype/wctype.h +++ b/wctype/wctype.h @@ -145,6 +145,13 @@ extern int iswupper __P ((wint_t __wc)); in the previous subclause. */ extern int iswxdigit __P ((wint_t __wc)); +/* Test for any wide character that corresponds to a standard blank + wide character or a locale-specific set of wide characters for + which `iswalnum' is false. */ +# ifdef __USE_GNU +extern int iswblank __P ((wint_t __wc)); +# endif + /* * Extensible wide-character classification functions: 7.15.2.2. */ @@ -280,6 +287,10 @@ extern int __iswupper_l __P ((wint_t __wc, __locale_t __locale)); in the previous subclause. */ extern int __iswxdigit_l __P ((wint_t __wc, __locale_t __locale)); +/* Test for any wide character that corresponds to a standard blank + wide character or a locale-specific set of wide characters for + which `iswalnum' is false. */ +extern int __iswblank_l __P ((wint_t __wc, __locale_t __locale)); /* Construct value that describes a class of wide characters identified by the string argument PROPERTY. */ |