blob: 10cce38cb630275aa25e89b7b8e23578bae25819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef FVM_AS_ANALYZER_H_
#define FVM_AS_ANALYZER_H_
#include "as_parser.h"
#include "utils.h"
struct symTableEntry;
typedef struct symTableEntry * SymTableEntry;
SymTableEntry * analyzeProg(Allocator alct, Prog prog);
#endif // FVM_AS_ANALYZER_H_
|