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

#include <stdio.h>

extern int lineError;
extern int errorParse;

typedef struct {
    void *parser;
    void *scanner;
    FILE *file;
    PyObject *data;
} lex_t;

#endif