(file) Return to CommonUTF.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CommonUTF.cpp between version 1.13 and 1.14

version 1.13, 2005/03/28 19:24:21 version 1.14, 2005/04/07 19:56:09
Line 47 
Line 47 
 { {
     Uint8 n;     Uint8 n;
  
     if (c.isDigit())      if (isdigit(c))
         n = (c - '0');         n = (c - '0');
     else if (c.isUpper())      else if (isupper(c))
         n = (c - 'A' + 10);         n = (c - 'A' + 10);
     else // if (islower(c))     else // if (islower(c))
         n = (c - 'a' + 10);         n = (c - 'a' + 10);


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2