tpl/tests/test85.c
2013-03-12 16:38:58 -04:00

14 lines
213 B
C
Executable File

#include <stdio.h>
#include <stdlib.h>
#include "tpl.h"
int main() {
char *fmt;
fmt = tpl_peek(TPL_FILE, "test85.tpl");
if (fmt) {
printf("%s\n",fmt);
free(fmt);
}
return 0;
}