From f3830138661374ca10fe6a0b6f2f4b949dea3e5c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 15 Jun 2014 16:31:14 +0200 Subject: Switch to sqlite3's lemon parser generator. This commit drops the flex + bison code in favor to a hand-written lexer and a new grammar file in lemon syntax. The change results in a much smaller binary and easier to maintain code. Code required to build and maintain the AST has been split off into the ast.c and ast.h files. Signed-off-by: Jo-Philipp Wich --- matcher.c | 1 + 1 file changed, 1 insertion(+) (limited to 'matcher.c') diff --git a/matcher.c b/matcher.c index a76fc13..7fb6d02 100644 --- a/matcher.c +++ b/matcher.c @@ -14,6 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "parser.h" #include "matcher.h" static struct json_object * -- cgit v1.2.1