mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@863 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
241 B
C
20 lines
241 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;
|
|
char *name;
|
|
PyObject *data;
|
|
int config;
|
|
} lex_t;
|
|
|
|
#endif
|