]> git.saurik.com Git - apple/libc.git/blobdiff - internat/NXIsGraph.c
Libc-594.9.1.tar.gz
[apple/libc.git] / internat / NXIsGraph.c
index 42e9d726e69ce3b8bba6a1cdc0aee2c71911a6b4..af5c690e02b67a48ff713c45e2b05e26e55c98f8 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,7 +32,7 @@ int NXIsGraph(c)
 {
        FIXSIGNEDCHAR(c);
        if (c < 256)
-               return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_P|_U|_L|_D)));
+               return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_CTYPE_P|_CTYPE_U|_CTYPE_L|_CTYPE_D)));
        return 1;
                /* NOTE: for 3.0, everything > 256 is probably Kanji, so say is graphic */
 }