1
0
forked from GitHub/gf-core

grammar loader and unloader in C. Abstract Syntax only!

This commit is contained in:
krasimir
2010-06-16 15:14:34 +00:00
parent 106d056f54
commit c760c52223
8 changed files with 914 additions and 0 deletions

14
src/runtime/c/pgf.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef PGF_H
#define PGF_H
typedef struct _CId *CId;
typedef struct _String *String;
typedef struct _Literal *Literal ;
typedef struct _Type *Type ;
typedef struct _Expr *Expr ;
typedef struct _PGF *PGF ;
PGF readPGF(char *filename);
void freePGF(PGF pgf);
#endif