apio
1367e88d88
Finally, we can use %zx with a 64-bit number instead of %x%x with 2 32-bit values split from a 64-bit number!
10 lines
259 B
C
10 lines
259 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
char* itoa(int32_t number, char* arr, int base);
|
|
char* utoa(uint32_t number, char* arr, int base);
|
|
|
|
char* ltoa(int64_t number, char* arr, int base);
|
|
char* ultoa(uint64_t number, char* arr, int base);
|
|
|
|
void sleep(uint64_t ms); |