11 lines
218 B
C++
11 lines
218 B
C++
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::vector<std::string> split_line(const std::string& line, char delim);
|
|
std::string& clean_whitespace(std::string& str);
|
|
|
|
#endif // COMMON_H_
|