/* Strucutre pour contenir les donneés du templates */ #ifndef H_STRCT #define H_STRCT 1 typedef struct tpl_data_s *tpl_data; struct tpl_data_s { char* key; char* value; tpl_data next; }; tpl_data new_tpl(); void tpl_debug(tpl_data data); void tpl_updt(tpl_data data, char* key, char* value); char* tpl_get(tpl_data data, char* key); #endif //H_STRCT