aboutsummaryrefslogtreecommitdiff
path: root/Source/Parser/wp_parser_c.cpp
blob: ad7d5ec510ecc1955325c0eb5d69f737beb60eba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "wp_parser_c.h"
#include "wp_parser.lex.h"
#include "wp_parser.tab.h"

struct wp_parser*
wp_c_parser_new (char const* body)
{
    YY_BUFFER_STATE buffer = yy_scan_string(body);
    yyparse();
    struct wp_parser* parser = wp_parser_new();
    yy_delete_buffer(buffer);
    return parser;
}