Files
csgo2_tiny_server_plugin_sy…/csgo2/tools.h

11 lines
386 B
C
Raw Normal View History

2023-10-02 18:04:54 +08:00
#pragma once
#include "head.h"
namespace Tools {
2023-10-03 00:25:23 +08:00
auto GetExeFileName() -> std::string;
auto GetExePath() -> std::string;
auto GetFiles(const std::string& path, std::vector<std::string>& files) -> void;
auto GetDirs(const std::string& path)
-> std::pair<std::vector<std::string>, std::vector<std::string>>;
auto toLower(const std::string& str) -> std::string;
2023-10-03 00:25:23 +08:00
}; // namespace Tools