Armadillo  0.1.1
TheexpandableOS
All Data Structures Files Functions Typedefs Enumerations Macros Pages
stdlib.h
Go to the documentation of this file.
1 
6 #ifndef __STDLIB_H_
7 #define __STDLIB_H_
8 
9 
17 char itoa(int n);
25 char *number_to_char(int n);
33 char *hexadecimal_to_char(unsigned long number);
47 int strcmp(const char *str1, const char *str2);
54 int strlen(const char *str);
55 
56 #endif
int strcmp(const char *str1, const char *str2)
Compares the string pointed to by str1 with the string pointed to by str2.
Definition: stdlib.c:15
char itoa(int n)
Definition: stdlib.c:28
char * number_to_char(int n)
Definition: stdlib.c:51
int strlen(const char *str)
Definition: stdlib.c:5
char * hexadecimal_to_char(unsigned long number)
Definition: stdlib.c:67