fixes #3 Co-authored-by: lcw <ez_lcw@foxmail.com> Co-authored-by: szdytom <szdytom@qq.com> Reviewed-on: #5
10 lines
142 B
C++
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 |