Convert the string to an integer value using the specified number base. All characters up to the first illegal character for the number base are converted. Case is not significant for bases greater than 10. The number base may only be from 2 to 36 and the function will assert if it is not in this range. This function uses the standard C library strtol()# function.
Definition at line 2275 of file contain.cxx. Referenced by PPOP3Client::GetMessageCount(), PPOP3Client::GetMessageSizes(), PInternetProtocol::ParseResponse(), PHTTP::ParseResponse(), and PPOP3Server::ProcessCommand(). { PAssert(base >= 2 && base <= 36, PInvalidParameter); char * dummy; return strtol(theArray, &dummy, base); }
|