src: Move certain headers in common

This commit is contained in:
GPUCode 2023-11-05 13:41:10 +02:00
parent 6e28ac711f
commit 17aefc1aef
73 changed files with 98 additions and 106 deletions

9
src/common/string_util.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include <vector>
#include <string>
namespace StringUtil {
std::vector<std::string> split_string(const std::string& str, char delimiter);
}