#include "gwion_util.h"
#include "gwion_ast.h"
#include "parser.h"
Go to the source code of this file.
|
int | main (int argc, char **argv) |
|
◆ main()
int main |
( |
int | argc, |
|
|
char ** | argv ) |
Definition at line 4 of file main.c.
4 {
5
6 MemPool p = mempool_ini(1024);
7 SymTable *st = new_symbol_table(p, 65536);
9 for(int i = 1; i < argc; i++) {
10 FILE *f = fopen(argv[i], "r");
11 if(!f) {
12 gw_err("{R+}%s{0} not found\n");
13 continue;
14 }
18 }
19}
static ANN Ast parse(struct AstGetter_ *const arg)