Lots of work on removing malloc from driver

This commit is contained in:
2022-02-17 20:02:08 -05:00
parent 9d7bf8b0f9
commit 467f25b927
17 changed files with 1301 additions and 197 deletions

View File

@@ -0,0 +1,13 @@
#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