19 lines
329 B
C++
19 lines
329 B
C++
|
|
#ifndef DRIVER_UTIL_HPP
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
#include "wrap-string.hpp"
|
|
#include "wrap-vector.hpp"
|
|
|
|
#include <string_view>
|
|
|
|
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
|