VirtualBox

Changeset 24011 in vbox for trunk/src


Ignore:
Timestamp:
Oct 23, 2009 8:30:17 AM (15 years ago)
Author:
vboxsync
Message:

don't use <ctype.h> on UTF-8.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp

    r19350 r24011  
    942942                /** @todo this stuff belongs in IPRT, same stuff as mac address reading. Could be reused for IPv6 with a different item size.*/
    943943                /* skip white space */
    944                 while (isspace(*psz))
     944                while (RT_C_IS_SPACE(*psz))
    945945                    psz++;
    946946                if (!*psz)
     
    951951                if (iNum == -1)
    952952                    return 1;
    953                 if (!isspace(*psz) && *psz)
     953                if (!RT_C_IS_SPACE(*psz) && *psz)
    954954                {
    955955                    int iDigit = HexDigitToNum(*psz++);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette