diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-11-28 02:14:42 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-11-28 02:14:42 +0100 |
commit | 1151c26c363e736a98c5fcb723c753658fe35b9b (patch) | |
tree | 14b1cd8ef09e0ea5ec57ad5a4a230b282ec7f943 /src/utils/tolower.hpp | |
parent | 2921f53657a78a73ca0dc8af95219ca27653fe55 (diff) | |
download | biboumi-1151c26c363e736a98c5fcb723c753658fe35b9b.tar.gz biboumi-1151c26c363e736a98c5fcb723c753658fe35b9b.tar.bz2 biboumi-1151c26c363e736a98c5fcb723c753658fe35b9b.tar.xz biboumi-1151c26c363e736a98c5fcb723c753658fe35b9b.zip |
Channel names are case insensitive
But some servers (epiknet for example) send channel names with an uppercase
Diffstat (limited to 'src/utils/tolower.hpp')
-rw-r--r-- | src/utils/tolower.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/utils/tolower.hpp b/src/utils/tolower.hpp new file mode 100644 index 0000000..22d2b8f --- /dev/null +++ b/src/utils/tolower.hpp @@ -0,0 +1,18 @@ +#ifndef TOLOWER_INCLUDED +# define TOLOWER_INCLUDED + +#include <string> + +namespace utils +{ + std::string tolower(const std::string& original) + { + std::string res; + res.reserve(original.size()); + for (const char c: original) + res += static_cast<char>(std::tolower(c)); + return res; + } +} + +#endif // SPLIT_INCLUDED |