mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-01-13 15:27:35 +00:00
13 lines
199 B
C
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 */
|