fix: General fixes

This commit is contained in:
2025-08-07 21:26:50 +02:00
parent 4d98c6a7d6
commit 7f0e67782d
4 changed files with 7 additions and 34 deletions
+3 -1
View File
@@ -7,6 +7,8 @@
#pragma once
#include <CppLib/Vector.hpp>
typedef const char* CString;
namespace kcp {
vector<const char*> splitstr(const char* str, char delimiter);
vector<const char*> splitstr(CString str, char delimiter);
};