diff options
Diffstat (limited to 'src/libc/string.h')
| -rw-r--r-- | src/libc/string.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libc/string.h b/src/libc/string.h new file mode 100644 index 0000000..c3d3614 --- /dev/null +++ b/src/libc/string.h @@ -0,0 +1,9 @@ +#ifndef STRING_H +#define STRING_H + +/** + * Convert int to char + */ +void itoa(int i, char *a); + +#endif
\ No newline at end of file |
