acpa/include/scan.h
2023-08-29 20:06:01 +08:00

10 lines
142 B
C++

#ifndef ACPA_SCAN_H
#define ACPA_SCAN_H
#include "token.h"
#include <string>
#include <vector>
std::vector<Token> scan(std::string);
#endif