Difference between revisions of "Strtoi"

From UODemo Wiki
Jump to: navigation, search
(Created page with 'integer '''strtoi'''(string ''AnyString''); Converts a string to a signed integer. This is implemented by using the ''atoi'' C function.')
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
Converts a string to a signed integer. This is implemented by using the ''atoi'' C function.
 
Converts a string to a signed integer. This is implemented by using the ''atoi'' C function.
 +
 +
 +
Return to the [[Command List]].

Latest revision as of 10:25, 25 January 2010

integer strtoi(string AnyString);

Converts a string to a signed integer. This is implemented by using the atoi C function.


Return to the Command List.