16.01.2012, 15:19
(
Последний раз редактировалось Slice; 23.03.2012 в 13:37.
)
Thanks, guys.
I updated the include with a new function: unsigned_string(value).
This function returns a string with an unsigned base 10 representation of the number.
Example:
Edit: unsigned_string is now roughly 50 times faster than the previous version!
I updated the include with a new function: unsigned_string(value).
This function returns a string with an unsigned base 10 representation of the number.
Example:
pawn Код:
printf("%d", 0xFFFFFFFF ); // -1
printf("%s", unsigned_string(0xFFFFFFFF)); // 4294967295