aboutsummaryrefslogtreecommitdiff
path: root/src/libc/string.h
blob: c3d3614b3dbe00b3fe4a9f617bd955773fd0bbf6 (plain)
1
2
3
4
5
6
7
8
9
#ifndef STRING_H
#define STRING_H

/**
 * Convert int to char
 */
void itoa(int i, char *a);

#endif