- Timestamp:
- Oct 23, 2009 8:30:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/testcase/tstDisasm-2.cpp
r19350 r24011 942 942 /** @todo this stuff belongs in IPRT, same stuff as mac address reading. Could be reused for IPv6 with a different item size.*/ 943 943 /* skip white space */ 944 while ( isspace(*psz))944 while (RT_C_IS_SPACE(*psz)) 945 945 psz++; 946 946 if (!*psz) … … 951 951 if (iNum == -1) 952 952 return 1; 953 if (! isspace(*psz) && *psz)953 if (!RT_C_IS_SPACE(*psz) && *psz) 954 954 { 955 955 int iDigit = HexDigitToNum(*psz++);
Note:
See TracChangeset
for help on using the changeset viewer.