diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-08-05 15:23:56 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-08-05 15:23:56 -0700 |
commit | 54881d9f90acfb1676b3eebb0feb17811d1cc4bf (patch) | |
tree | 4bbadb21100a85dc7d95e4fd844e3e3839645860 /src/NormalizeCaseInsensitiveString.hpp | |
parent | a09abace8d4ec0d2fc9bb65493dfae7b7ce8e0fe (diff) |
Use SystemAbstractions::ToLower instead of doing it ourselves
Diffstat (limited to 'src/NormalizeCaseInsensitiveString.hpp')
-rw-r--r-- | src/NormalizeCaseInsensitiveString.hpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/NormalizeCaseInsensitiveString.hpp b/src/NormalizeCaseInsensitiveString.hpp deleted file mode 100644 index 014dd74..0000000 --- a/src/NormalizeCaseInsensitiveString.hpp +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef URI_NORMALIZE_CASE_INSENSITIVE_STRING_HPP -#define URI_NORMALIZE_CASE_INSENSITIVE_STRING_HPP - -/** - * @file NormalizeCaseInsensitiveString.hpp - * - * This module declares the Uri::NormalizeCaseInsensitiveString function. - * - * © 2018 by Richard Walters - */ - -#include <string> - -namespace Uri { - - /** - * This function takes a string and swaps all upper-case characters - * with their lower-case equivalents, returning the result. - * - * @param[in] inString - * This is the string to be normalized. - * - * @return - * The normalized string is returned. All upper-case characters - * are replaced with their lower-case equivalents. - */ - std::string NormalizeCaseInsensitiveString(const std::string& inString); -} - -#endif /* URI_NORMALIZE_CASE_INSENSITIVE_STRING_HPP */ |