diff options
Diffstat (limited to 'cppe/include/IceE/StringUtil.h')
-rw-r--r-- | cppe/include/IceE/StringUtil.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/include/IceE/StringUtil.h b/cppe/include/IceE/StringUtil.h index ea58ceffc89..bcdbc75f6a4 100644 --- a/cppe/include/IceE/StringUtil.h +++ b/cppe/include/IceE/StringUtil.h @@ -7,8 +7,8 @@ // // ********************************************************************** -#ifndef ICEE_STRING_UTIL_H -#define ICEE_STRING_UTIL_H +#ifndef ICE_STRING_UTIL_H +#define ICE_STRING_UTIL_H #include <IceE/Config.h> @@ -19,12 +19,12 @@ namespace IceUtil // Add escape sequences (like "\n", or "\0xxx") to make a string // readable in ASCII. // -ICEE_API std::string escapeString(const std::string&, const std::string&); +ICE_API std::string escapeString(const std::string&, const std::string&); // // Remove escape sequences added by escapeString. // -ICEE_API bool unescapeString(const std::string&, std::string::size_type, std::string::size_type, std::string&); +ICE_API bool unescapeString(const std::string&, std::string::size_type, std::string::size_type, std::string&); // // If a single or double quotation mark is found at the start @@ -33,7 +33,7 @@ ICEE_API bool unescapeString(const std::string&, std::string::size_type, std::st // 0 is returned. If no matching closing quote is found, then // std::string::npos is returned. // -ICEE_API std::string::size_type checkQuote(const std::string&, std::string::size_type = 0); +ICE_API std::string::size_type checkQuote(const std::string&, std::string::size_type = 0); // // Match `s' against the pattern `pat'. A * in the pattern acts @@ -41,7 +41,7 @@ ICEE_API std::string::size_type checkQuote(const std::string&, std::string::size // other than a period (`.'). We match by hand here because // it's portable across platforms (whereas regex() isn't). // -ICEE_API bool match(const std::string&, const std::string&, bool = false); +ICE_API bool match(const std::string&, const std::string&, bool = false); } |