diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-12 04:44:58 +0000 |
commit | 708d97e4bd4acf9d7c1bad093d0c3847282b09c2 (patch) | |
tree | f6d6de12f2b778f67d52906c8978578bb278b4e6 /cppe/include/IceE/StringUtil.h | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=439 (diff) | |
download | ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.bz2 ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.tar.xz ice-708d97e4bd4acf9d7c1bad093d0c3847282b09c2.zip |
ICEE_ -> ICE_
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); } |