Fix Namespaces, add ends_with functions

This commit is contained in:
2020-03-07 19:38:13 +01:00
parent dae1243185
commit ce71fc10b9
7 changed files with 65 additions and 10 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef RANDOM_H
#define RANDOM_H
#include <string>
namespace Random {
std::string CreateRandomString(size_t length);
} // namespace Random
#endif // RANDOM_H