X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/59e0d9fe772464b93d835d2a2964457702469a43..34e8f8296870d0e8695f90e1a54240a589d41312:/internat/NXIsAlNum.c?ds=inline diff --git a/internat/NXIsAlNum.c b/internat/NXIsAlNum.c index dc911d1..35670e0 100644 --- a/internat/NXIsAlNum.c +++ b/internat/NXIsAlNum.c @@ -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; }