neptune/lib/string.h

7 lines
125 B
C

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