mirror of
https://github.com/mikpe/pdp10-tools.git
synced 2026-02-07 17:01:30 +00:00
16 lines
235 B
C
16 lines
235 B
C
/*
|
|
* scan.h
|
|
*/
|
|
#ifndef SCAN_H
|
|
#define SCAN_H
|
|
|
|
#include "token.h"
|
|
|
|
const char *scan_filename;
|
|
int scan_freopen(const char *filename);
|
|
|
|
unsigned int scan_linenr;
|
|
enum token scan(union token_attribute *token_attr);
|
|
|
|
#endif /* SCAN_H */
|