18 lines
337 B
C++
18 lines
337 B
C++
|
|
#ifndef DRIVER_UTIL_HPP
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
#include "wrap-string.hpp"
|
|
#include "wrap-string-view.hpp"
|
|
#include "wrap-vector.hpp"
|
|
|
|
namespace drv {
|
|
|
|
void split_host_port(drv::string_view target, drv::string &host, drv::string &port);
|
|
|
|
drv::vector<drv::string> parse_control_lst(drv::string_view ctrl);
|
|
|
|
}
|
|
|
|
#endif // DRIVER_UTIL_HPP
|