You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
339 B

#ifndef __EXTSTRING_H
#define __EXTSTRING_H
#include <string>
#include <vector>
namespace segl {
int explode(std::string str, std::string delim, std::vector<std::string> *erg, bool clean=false);
std::string trim(std::string t);
std::string basename(std::string str);
std::string rbasename(std::string str);
} // namespace segl
#endif