TacOS  0.2
 Tout Structures de données Fichiers Fonctions Variables Définitions de type Énumérations Macros
stdlib.h
Aller à la documentation de ce fichier.
1 
29 #ifndef _STDLIB_H_
30 #define _STDLIB_H_
31 
39 int atoi(const char* __nptr);
40 
57 int itoa(char *buf, int base, int d);
58 
65 void itox(char *buf, int d);
66 
67 #endif
int itoa(char *buf, int base, int d)
Converti l'entier d en une chaîne de caractère et le stock dans buf. L'entier base permet de spécifie...
Definition: stdlib.c:29
void itox(char *buf, int d)
Definition: stdlib.c:71
int atoi(const char *__nptr)
Definition: stdlib.c:3