util/StringUtil: add function Strip()

Replaces g_strstrip().
This commit is contained in:
Max Kellermann
2014-02-17 22:37:43 +01:00
parent 6a08f2281a
commit 579e48edbb
5 changed files with 27 additions and 6 deletions

View File

@@ -26,8 +26,7 @@
#include "system/FatalError.hxx"
#include "util/Alloc.hxx"
#include "util/ASCII.hxx"
#include <glib.h>
#include "util/StringUtil.hxx"
#include <algorithm>
@@ -54,7 +53,7 @@ TagLoadConfig()
quit = true;
*s = '\0';
c = g_strstrip(c);
c = Strip(c);
if (*c == 0)
continue;

View File

@@ -22,6 +22,7 @@
#include "TagHandler.hxx"
#include "TagTable.hxx"
#include "TagBuilder.hxx"
#include "util/StringUtil.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
@@ -116,7 +117,7 @@ import_id3_string(bool is_id3v1, const id3_ucs4_t *ucs4)
}
id3_utf8_t *utf8_stripped = (id3_utf8_t *)
g_strdup(g_strstrip((gchar *)utf8));
g_strdup(Strip((char *)utf8));
free(utf8);
return utf8_stripped;