Initial Commit

This commit is contained in:
2016-01-19 14:26:58 +01:00
parent 36baf73cca
commit 02076b62f5
21 changed files with 947 additions and 0 deletions

12
header/util.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __UTIL__
#define __UTIL__
char *duplique_chaine(char *s);
void erreur(char *message);
void erreur_1s(char *message, char *s);
void affiche_balise_ouvrante(const char *fct_, int trace_xml);
void affiche_balise_fermante(const char *fct_, int trace_xml);
void affiche_element(char *fct_, char *texte_, int trace_xml);
void affiche_texte(char *texte_, int trace_xml);
#endif