bringelle/src/libc/string.h

9 lines
100 B
C
Raw Normal View History

2021-04-09 10:29:23 +02:00
#ifndef STRING_H
#define STRING_H
2021-04-16 20:20:29 +02:00
/**
* Convert int to char
*/
2021-04-09 10:29:23 +02:00
void itoa(int i, char *a);
#endif