9 lines
141 B
C
9 lines
141 B
C
|
#ifndef GUARD_split_h
|
||
|
#define GUARD_split_h
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
std::vector<std::string> split(const std::string&);
|
||
|
|
||
|
#endif
|