18 lines
305 B
C++
18 lines
305 B
C++
|
|
#ifndef DRIVER_UTIL_HPP
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
#include "umm-malloc.hpp"
|
|
|
|
using UmmStringVec = UmmVector<UmmString>;
|
|
|
|
namespace drv {
|
|
|
|
void split_host_port(std::string_view target, UmmString &host, UmmString &port);
|
|
|
|
UmmStringVec parse_control_lst(std::string_view ctrl);
|
|
|
|
}
|
|
|
|
#endif // DRIVER_UTIL_HPP
|