summaryrefslogtreecommitdiff
path: root/src/utils/tolower.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/tolower.hpp')
-rw-r--r--src/utils/tolower.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils/tolower.hpp b/src/utils/tolower.hpp
new file mode 100644
index 0000000..650e05d
--- /dev/null
+++ b/src/utils/tolower.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+
+#include <string>
+
+namespace utils
+{
+ std::string tolower(const std::string& original);
+}
+
+