heap position is now dynamically determined
This commit is contained in:
parent
dbe4a2a84e
commit
aedba6e52b
5 changed files with 7 additions and 12 deletions
|
@ -47,7 +47,7 @@ char* ultoa(unsigned long number, char* string, int base)
|
|||
if(digit < 10)
|
||||
temp[i++] = '0' + digit;
|
||||
else
|
||||
temp[i++] = 'A' + digit;
|
||||
temp[i++] = 'A' + digit - 10;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue