mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@371 311d38ba-8fff-0310-9ca6-ca027cbcb966
18 lines
209 B
C
18 lines
209 B
C
|
|
#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
|