]> git.saurik.com Git - apple/libc.git/blobdiff - internat/NXIsAlNum.c
Libc-583.tar.gz
[apple/libc.git] / internat / NXIsAlNum.c
index dc911d10f7841cb032f125b6b2fbc434d76505e8..35670e0479b339e2002c465862cda34fe0540ad1 100644 (file)
@@ -3,8 +3,6 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
- * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
@@ -34,6 +32,6 @@ int NXIsAlNum(c)
 {
        FIXSIGNEDCHAR(c);
        if (c < 256)
-               return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_U|_L|_D)));
+               return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_CTYPE_U|_CTYPE_L|_CTYPE_D)));
        return 0;
 }