aboutsummaryrefslogtreecommitdiff
path: root/Source/Parser/wp_parser_c.cpp
blob: fe217fdcc83e2b4f937d530f63b23873b8f2da9b (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 = wxparser_scan_string(body);
    wxparserparse();
    struct wp_parser* parser = wp_parser_new();
    wxparser_delete_buffer(buffer);
    return parser;
}