UniStrtol converts the initial portion of the string pointed to by nptr to long int representation. First, it decomposes the input string into three parts:

Then, it attempts to convert the subject sequence to an unsigned integer, and returns the result in the area pointed to by liResult. A pointer to the final string is stored in the object pointed to by endptr, provided that endptr is not a null pointer.


[Back: UniStrtol - Parameters]
[Next: UniStrtol - Related Functions]