mirror of https://github.com/nmlgc/ReC98.git
9 lines
296 B
C++
9 lines
296 B
C++
|
// Equivalent to sprintf(str, "%*u", width, val).
|
||
|
void pascal str_right_aligned_from_uint16(
|
||
|
char *str, uint16_t val, uint16_t width
|
||
|
);
|
||
|
|
||
|
// Equivalent to sprintf(str, "%d", val), if that function glitched out for
|
||
|
// negative numbers.
|
||
|
void pascal str_from_positive_int16(char *str, int16_t val);
|