lrc_uhyper
| Type Conversion From String |
Converts a string into an unsigned hyper integer.
uhyper lrc_uhyper( const char* str );
uhyper* lrc_uhyper_by_ref( const char* str );
| str | A character string containing an unsigned hyper (64 bit) integer. |
The lrc_uhyper function returns an unsigned hyper (64 bit) integer when a character string representing an unsigned hyper integer is input.
The lrc_uhyper_by_ref function returns a pointer to an unsigned hyper (64 bit) integer when a character string representing an unsigned hyper integer is input.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example converts the "428496729412" string into the unsigned hyper value 428496729412:
uhyper Var = lrc_uhyper("428496729412");

