My Project
Loading...
Searching...
No Matches
utility.h
Go to the documentation of this file.
1
11#include <stdarg.h>
12
13#ifndef Utility_h
14#define Utility_h
15
24char * strcats(char* dest, int num_args, ...);
25
32char * int_to_str(int n);
33
34#endif
char * int_to_str(int n)
Convertit un entier en chaine de caractère.
Definition: utility.c:20
char * strcats(char *dest, int num_args,...)
Concatène plusieurs chaines de caractères.
Definition: utility.c:7