lrc_uint
| Type Conversion From String |
Converts a string into an unsigned integer.
unsigned int lrc_uint( const char* str );
unsigned int lrc_unsigned_int( const char* str );
unsigned int* lrc_uint_by_ref( const char* str );
| str | A pointer to a character string containing an unsigned integer. |
The lrc_uint function returns an unsigned integer when a character string representing an unsigned integer is input.
The lrc_uint_by_ref function returns pointer to an unsigned integer when a character string representing an unsigned integer is input.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example converts the "4,200,000,000" string into the unsigned integer 4200000000:
unsigned int Var = lrc_uint("4200000000");

