17 lines
698 B
C
17 lines
698 B
C
#ifndef VESSEL_WEB_TEMPLE_PARSERS_H_
|
|
#define VESSEL_WEB_TEMPLE_PARSERS_H_
|
|
|
|
#include "conf.h"
|
|
|
|
#include "temple.h"
|
|
|
|
vw_TempleASTNode *vw_TempleParser_parse_comment(vs_Logger *logger,
|
|
const char *input,
|
|
const char *end,
|
|
const char **readp);
|
|
vw_TempleASTNode *vw_TempleParser_parse_output(vs_Logger *logger,
|
|
const char *input,
|
|
const char *end,
|
|
const char **readp);
|
|
|
|
#endif /* VESSEL_WEB_TEMPLE_PARSERS_H_ */
|