#pragma once ///@defgroup libk libk ///@{ ///@defgroup string string ///@{ #define OCTAL 8 #define DECIMAL 10 #define HEX 16 #ifdef __cplusplus extern "C" { #endif /** * Convert int into a string */ char *itoa(char *p, int x, int base); /** * Convert unsigned int into a string */ char *utoa(char *p, unsigned x, int base); #ifdef __cplusplus } #endif ///@} ///@}