mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
9 lines
219 B
C++
9 lines
219 B
C++
#ifndef __STRING_UTILS_H__
|
|
#define __STRING_UTILS_H__
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
std::string& trim(std::string &s);
|
|
void split(std::vector<std::string> &result, std::string source, std::string mark);
|
|
|
|
#endif |