diff options
author | Kalle Wallin <kaw@linux.se> | 2004-07-01 10:52:57 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-07-01 10:52:57 +0000 |
commit | 95633d4b608f6ae3d74c6ee5c269ed2559a9966c (patch) | |
tree | 90da767ea9a3bcc7ae57f9d8deff94c9acf82eb3 /src/support.h | |
parent | eedf600cfe4b74db6053e96f0b09979594ca31ba (diff) | |
download | mpd-95633d4b608f6ae3d74c6ee5c269ed2559a9966c.tar.gz mpd-95633d4b608f6ae3d74c6ee5c269ed2559a9966c.tar.xz mpd-95633d4b608f6ae3d74c6ee5c269ed2559a9966c.zip |
Removed the trim() function, using glib's g_strstrip() instead
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1751 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/support.h')
-rw-r--r-- | src/support.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/support.h b/src/support.h index fce9aac28..4182d2e74 100644 --- a/src/support.h +++ b/src/support.h @@ -11,7 +11,6 @@ char *basename(char *path); #define IS_WHITESPACE(c) (c==' ' || c=='\t' || c=='\r' || c=='\n') -char *trim(char *str); char *remove_trailing_slash(char *path); char *lowerstr(char *str); char *strcasestr(const char *haystack, const char *needle); |