make b2s 64 bits capable

This commit is contained in:
King Kévin 2016-05-05 23:25:11 +02:00
parent 5a43d4d48c
commit bbdfe97cc6
1 changed files with 1 additions and 1 deletions

View File

@ -90,5 +90,5 @@ int _write(int file, char *ptr, int len);
* @param[in] rjust justify representation with leading zeros
* @return string with binary representation of the number
*/
char* b2s(uint32_t binary, uint8_t rjust);
char* b2s(uint64_t binary, uint8_t rjust);