acc/include/scan.h
2023-02-07 10:32:03 +08:00

10 lines
131 B
C

#ifndef ACC_SCAN_H
#define ACC_SCAN_H
#include "token.h"
extern int Line;
struct linklist scan_tokens(const char *name);
#endif