Opposite of RAW_LE ?
Is there a built-in command for this? I need to turn "ABCD" into a Long 44434241, and then ITOA that to get "1145258561"
Sometimes I wonder about hardware vendors...
Sometimes I wonder about hardware vendors...
0
Comments
DEFINE_FUNCTION CHAR[10] CONVERT(CHAR STR[4]) { RETURN ITOA((STR[4] << 24) | (STR[3] << 16) | (STR[2] << 8) | STR[1]); }Chuck