/* Compilateur de template */ #ifndef H_COMPILE #define H_COMPILE 1 #include <stdio.h> #include <stdlib.h> #include "auto.h" char* escape(char* buff, size_t len); void wstart(FILE* stream); void whead(FILE* stream, char* page); void wpage(FILE* stream, auto_t page); void wend(FILE* stream); #endif