7 lines
158 B
C
7 lines
158 B
C
#pragma once
|
|
#include <stdint.h>
|
|
|
|
char* itoa(int number, char* arr, int base);
|
|
char* utoa(unsigned int number, char* arr, int base);
|
|
|
|
void sleep(uint64_t ms); |