summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/parse_c/lexerc.h
blob: c8a19fb2221a096bf6ad61b7b6d85edfd8d5f426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef LEXERC_H
#define LEXERC_H

#include <stdio.h>

extern int lineError;
extern int errorParse;

typedef struct {
    void *parser;
    void *scanner;
    FILE *file;
    char *name;
    PyObject *data;
    int config;
} lex_t;

#endif