atoi
Converts a given string to an integer.
int WINAPI atoi(
const TCHAR *sz);
Parameters
- sz
Source character string.
Return Values
Returns the string's integer value.
Remarks
This version of atoi supports only decimal digits, and does not allow leading white space or signs. It supports both Unicode and ANSI strings. Other versions can vary.
Last updated on Tuesday, July 13, 2004
© 1992-2000 Microsoft Corporation. All rights reserved.