From 4ed24a06191a0dbf68bd72ad0fcc8d467b37f580 Mon Sep 17 00:00:00 2001 From: archshift Date: Sun, 7 Sep 2014 00:49:52 -0700 Subject: loader.cpp: improved file extension checking, made Upper/LowerStr useful Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location. --- src/common/string_util.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/common/string_util.h') diff --git a/src/common/string_util.h b/src/common/string_util.h index ba4cd363..b1118816 100644 --- a/src/common/string_util.h +++ b/src/common/string_util.h @@ -13,10 +13,11 @@ #include "common/common.h" /// Make a string lowercase -void LowerStr(char* str); + +std::string LowerStr(std::string str); /// Make a string uppercase -void UpperStr(char* str); +std::string UpperStr(std::string str); std::string StringFromFormat(const char* format, ...); // Cheap! -- cgit v1.2.3