7 lines
110 B
C
7 lines
110 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
std::vector<std::string> tokenize(const std::string& str);
|