fixing bugs, changing some code from char arrays to c++ std::string

This commit is contained in:
jakani24
2024-03-13 19:10:31 +01:00
parent 717c7956f5
commit 41e0889a6e
38 changed files with 1242 additions and 1038 deletions

View File

@@ -7,5 +7,5 @@
#include <thread>
#include <mutex>
int start_thread(const char*command);
int start_thread(const std::string& command);
#endif