2022-09-05 16:13:51 +02:00
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2022-09-05 16:59:45 +02:00
|
|
|
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);
|
2022-09-05 16:13:51 +02:00
|
|
|
|
2022-09-24 22:40:59 +02:00
|
|
|
void sleep(uint64_t ms);
|
|
|
|
|
|
|
|
#define __skip_bindings
|
|
|
|
#include "memory/liballoc/liballoc.h"
|
|
|
|
#undef __skip_bindings
|