Bogofilter adapter for OpenSMTPD in C++
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.
 
 

12 lines
324 B

#ifndef _UTIL_
#define _UTIL_
#include <vector>
#include <string>
namespace util {
std::vector<std::string> split(const std::string input, const std::string::value_type separator, size_t max_tokens = -1);
std::string join(const std::vector<std::string> strings, const std::string::value_type separator);
};
#endif