X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmemcasecmp.c;h=a4d2e96a9b5b40cdebcb571cb7246e786d4172d4;hb=28546733a07f8078b9e6c21f52c2e3dcd096af0a;hp=ac4d7a9f5321a5d8041c58b1399e655a88bdbc09;hpb=0fbd02d895a1f4b81229304ea86d3d8e428a7605;p=gnulib.git diff --git a/lib/memcasecmp.c b/lib/memcasecmp.c index ac4d7a9f5..a4d2e96a9 100644 --- a/lib/memcasecmp.c +++ b/lib/memcasecmp.c @@ -12,8 +12,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Jim Meyering (meyering@na-net.ornl.gov) */ @@ -25,11 +25,11 @@ #include #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) -#define ISASCII(c) 1 +#define IN_CTYPE_DOMAIN(c) 1 #else -#define ISASCII(c) isascii(c) +#define IN_CTYPE_DOMAIN(c) isascii(c) #endif -#define ISUPPER(c) (ISASCII (c) && isupper (c)) +#define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) #if _LIBC || STDC_HEADERS # define TOLOWER(c) tolower (c)