/* * scan.h - interface to scanner for D compiler * CSE 413 au07 */ #include "token.h" #ifndef SCAN_H #define SCAN_H /* Return the next token from the source program, or EOF if */ /* there are no more tokens in the input */ Token next_token(); #endif /* ifndef SCAN_H */