diff options
Diffstat (limited to '')
-rw-r--r-- | twrp-functions.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp index 8d85ccf04..1c633e7e4 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -305,6 +305,13 @@ std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveL return res; } +void TWFunc::Strip_Quotes(char* &str) { + if (strlen(str) > 0 && str[0] == '\"') + str++; + if (strlen(str) > 0 && str[strlen(str)-1] == '\"') + str[strlen(str)-1] = 0; +} + vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) { vector<string> res; |