[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
| 5 | #ifndef _SSTRINGUTILS_H_ |
---|
| 6 | #define _SSTRINGUTILS_H_ |
---|
| 7 | |
---|
| 8 | #include "sstring.h" |
---|
[382] | 9 | #include <common/virtfile/virtfile.h> |
---|
[109] | 10 | |
---|
| 11 | /// return: 1=ok 0=error |
---|
[691] | 12 | int loadSString(const char* filename, SString& s, const char* framsgmodule = 0, const char* error = 0, bool remove_cr = true); |
---|
| 13 | void loadSString(VirtFILE *f, SString& s, bool remove_cr = true); |
---|
[257] | 14 | bool loadSStringLine(VirtFILE* f, SString &s); |
---|
[109] | 15 | |
---|
| 16 | int quoteTilde(SString &target); |
---|
| 17 | int unquoteTilde(SString &target); |
---|
| 18 | |
---|
[257] | 19 | bool strContainsOneOf(const char* str, const char* chars); |
---|
[109] | 20 | bool sstringQuote(SString& target); |
---|
[786] | 21 | SString sstringDelimitAndShorten(const SString &in, int maxlen, bool show_length, const SString& before, const SString& after); |
---|
[109] | 22 | const char* skipQuoteString(const char* txt, const char* limit); |
---|
| 23 | int sstringUnquote(SString &target); |
---|
| 24 | |
---|
[257] | 25 | int strFindField(const SString& txt, const SString& name, int &end); |
---|
| 26 | SString strGetField(const SString& txt, const SString& name); |
---|
| 27 | void strSetField(SString& txt, const SString& name, const SString& value); |
---|
[109] | 28 | |
---|
[512] | 29 | SString trim(const SString& s); ///< remove leading/trailing whitespace |
---|
[210] | 30 | bool removeCR(SString& s); ///< remove '\r' return true if changed |
---|
[257] | 31 | bool matchWildcard(const SString& word, const SString& pattern);///< '*' in pattern matches any substring |
---|
| 32 | bool matchWildcardList(const SString& word, const SString& patterns);///< patterns is a list of patterns (separated by ',') |
---|
[691] | 33 | SString getUIDString(uint64_t uid, char prefix); |
---|
| 34 | bool parseUIDString(const char* str, char prefix, uint64_t &uid, bool err); |
---|
[109] | 35 | |
---|
| 36 | #endif |
---|