aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
blob: f71c8354eb0a3fa65b0b4ccf6d0e6233d68e8fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef PARSER_SRC_UTILS_H_
#define PARSER_SRC_UTILS_H_

#include <string>
#include <vector>

#include "nodes.h"

namespace SimpleParser {

int8_t getPriority(char);
std::vector<std::string> lexer(std::string);

}

#endif  // PARSER_SRC_UTILS_H_