2013-07-23 20:46:16 +00:00

13 lines
199 B
C

/*
* parse.h
*/
#ifndef PARSE_H
#define PARSE_H
#include "input.h" /* for struct stmt */
#include "scan.h"
int parse_stmt(struct scan_state *scan_state, struct stmt *stmt);
#endif /* PARSE_H */