aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/StringUtil.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-04 17:43:01 +0100
committerMax Kellermann <max@duempel.org>2014-12-04 17:43:01 +0100
commit4e2f4e2091103ea571602c444642ff04c2bf5a2f (patch)
treec9673af59272ac77d3ee594e79e7bacb462b1f2c /src/util/StringUtil.cxx
parente69bef3ce389967b8239648e4b9eaec42217bc95 (diff)
downloadmpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.tar.gz
mpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.tar.xz
mpd-4e2f4e2091103ea571602c444642ff04c2bf5a2f.zip
util/StringUtil: add ToUpperASCII()
Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib.
Diffstat (limited to 'src/util/StringUtil.cxx')
-rw-r--r--src/util/StringUtil.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/util/StringUtil.cxx b/src/util/StringUtil.cxx
index bcade2b3b..f5b4b7a8b 100644
--- a/src/util/StringUtil.cxx
+++ b/src/util/StringUtil.cxx
@@ -120,3 +120,23 @@ string_array_contains(const char *const* haystack, const char *needle)
return false;
}
+
+void
+ToUpperASCII(char *dest, const char *src, size_t size)
+{
+ assert(dest != nullptr);
+ assert(src != nullptr);
+ assert(size > 1);
+
+ char *const end = dest + size - 1;
+
+ do {
+ char ch = *src++;
+ if (ch == 0)
+ break;
+
+ *dest++ = ToUpperASCII(ch);
+ } while (dest < end);
+
+ *dest = 0;
+}