19 lines
303 B
C++
19 lines
303 B
C++
|
|
#ifndef DRIVER_UTIL_HPP
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
|
|
namespace drv {
|
|
|
|
void split_host_port(std::string_view target, std::string &host, std::string &port);
|
|
|
|
std::vector<std::string> parse_control_lst(std::string_view ctrl);
|
|
|
|
}
|
|
|
|
#endif // DRIVER_UTIL_HPP
|