Files
integration/luprex/core/cpp/driver-util.hpp

19 lines
329 B
C++
Raw Normal View History

#ifndef DRIVER_UTIL_HPP
#define DRIVER_UTIL_HPP
#include "wrap-string.hpp"
#include "wrap-vector.hpp"
2022-02-24 13:50:43 -05:00
#include <string_view>
namespace drv {
2022-02-24 13:50:43 -05:00
void split_host_port(std::string_view target, drv::string &host, drv::string &port);
2022-02-24 13:50:43 -05:00
drv::vector<drv::string> parse_control_lst(std::string_view ctrl);
}
#endif // DRIVER_UTIL_HPP