bringelle/src/libc/string.h
2021-04-16 20:20:29 +02:00

9 lines
No EOL
100 B
C

#ifndef STRING_H
#define STRING_H
/**
* Convert int to char
*/
void itoa(int i, char *a);
#endif