mirror of https://github.com/GNOME/gimp.git
18 lines
246 B
C
18 lines
246 B
C
![]() |
#ifndef __PARSE_H__
|
||
|
#define __PARSE_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "gcg.h"
|
||
|
|
||
|
|
||
|
gint yylex(void);
|
||
|
gint yyerror(gchar* s);
|
||
|
gint yyparse(void);
|
||
|
extern int yydebug;
|
||
|
extern int yy_flex_debug;
|
||
|
extern FILE* yyin;
|
||
|
|
||
|
extern Module* current_module;
|
||
|
|
||
|
#endif
|