#pragma once #include "core/types.hpp" /** * Copy data byte per byte from src to dst */ void memcpy(void *src, void *dst, int size); /** * Convert int to char array */ void itoa(u64 i, char *a); /** * Convert int to char array */ void itoh(u64 i, char *a); /** * Length of a char* */ int strlen(char *s);