Mercurial > hg > octave-kai > gnulib-hg
comparison lib/fnmatch.c @ 2856:21b199ffea14
Rename ISASCII to IN_CTYPE_DOMAIN.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Sat, 09 Sep 2000 15:56:26 +0000 |
parents | 807294ed0f4f |
children | a48403c1d85a |
comparison
equal
deleted
inserted
replaced
2855:59678352da70 | 2856:21b199ffea14 |
---|---|
38 | 38 |
39 #if defined _LIBC || !defined __GNU_LIBRARY__ | 39 #if defined _LIBC || !defined __GNU_LIBRARY__ |
40 | 40 |
41 | 41 |
42 # if defined STDC_HEADERS || !defined isascii | 42 # if defined STDC_HEADERS || !defined isascii |
43 # define ISASCII(c) 1 | 43 # define IN_CTYPE_DOMAIN(c) 1 |
44 # else | 44 # else |
45 # define ISASCII(c) isascii(c) | 45 # define IN_CTYPE_DOMAIN(c) isascii(c) |
46 # endif | 46 # endif |
47 | 47 |
48 # define ISUPPER(c) (ISASCII (c) && isupper (c)) | 48 # define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) |
49 | 49 |
50 | 50 |
51 # ifndef errno | 51 # ifndef errno |
52 extern int errno; | 52 extern int errno; |
53 # endif | 53 # endif |