1 2 3 4 5 6 7 8 9 10 11
#ifndef __TEMPLATE_H #define __TEMPLATE_H typedef struct { char *pre; char *post; } template_t; template_t *template_create(void); #endif