#ifndef KERNEL_STRING_H #define KERNEL_STRING_H /** Integer to ascii */ char *itoa(int value, char *str, int base); #endif