armOS  0.1.0
Minimal ARM Operating System for the Raspberry Pi - Documentation generated for Pi 4.
stdlib.h
Go to the documentation of this file.
1 
10 #ifndef STDLIB_H
11 #define STDLIB_H
12 
19 char *itoa(int value);
20 /*
21  * Converts an int to a null-terminated string using the specified base.
22  * @param value Value to be converted to a string.
23  * @param base Numerical base used to represent the value as a string.
24  * Where 10 means decimal base, 16 hexadecimal, 8 octal, and 2 binary.
25  * (Only base 10 supported for now)
26  * @return A pointer to the resulting null-terminated string.
27  */
28 // char *itoa(int value, int base);
29 
36 int atoi(const char *str);
37 
40 #endif
atoi
int atoi(const char *str)
Definition: stdlib.c:41
itoa
char * itoa(int value)
Definition: stdlib.c:12