blob: e95fa469b8c4bf4c3edd613acf42d44db477128d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* blogc: A blog compiler.
* Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
*
* This program can be distributed under the terms of the LGPL-2 License.
* See the file COPYING.
*/
#ifndef _TEMPLATE_GRAMMAR_H
#define _TEMPLATE_GRAMMAR_H
#include "utils/utils.h"
typedef enum {
BLOGC_TEMPLATE_IF_STMT,
BLOGC_TEMPLATE_ELSE_STMT,
BLOGC_TEMPLATE_ENDIF_STMT,
BLOGC_TEMPLATE_BLOCK_STMT,
BLOGC_TEMPLATE_ENDBLOCK_STMT,
BLOGC_TEMPLATE_VARIABLE_STMT,
BLOGC_TEMPLATE_CONTENT_STMT,
} blogc_template_stmt_type_t;
typedef struct {
blogc_template_stmt_type_t type;
char *value;
} blogc_template_stmt_t;
b_slist_t* blogc_template_parse(const char *tmpl);
void blogc_template_free_stmts(b_slist_t *stmts);
#endif /* _TEMPLATE_GRAMMAR_H */
|