14 lines
205 B
C++
14 lines
205 B
C++
|
|
#ifndef DRIVER_UTIL_HPP
|
|
#define DRIVER_UTIL_HPP
|
|
|
|
#include "umm-malloc.hpp"
|
|
|
|
namespace drv {
|
|
|
|
void split_host_port(std::string_view target, UmmString &host, UmmString &port);
|
|
|
|
}
|
|
|
|
#endif // DRIVER_UTIL_HPP
|