diff options
author | Max Kellermann <max@duempel.org> | 2008-10-03 11:50:42 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-03 11:50:42 +0200 |
commit | ccc7cf81e560025520777118a00a4c041bd7a149 (patch) | |
tree | 24a5483fbd3829c3a383f1a17e0d312d464332e2 /src/support.h | |
parent | 8b2ace4bc265abde352fcd386ce5f88b88461f4d (diff) | |
download | mpd-ccc7cf81e560025520777118a00a4c041bd7a149.tar.gz mpd-ccc7cf81e560025520777118a00a4c041bd7a149.tar.xz mpd-ccc7cf81e560025520777118a00a4c041bd7a149.zip |
use g_ascii_isspace() instead of IS_WHITESPACE()
Don't duplicate code which is already provided by glib.
Diffstat (limited to '')
-rw-r--r-- | src/support.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/support.h b/src/support.h index 5d67b8fa7..68f746dd3 100644 --- a/src/support.h +++ b/src/support.h @@ -11,8 +11,6 @@ char *basename(char *path); #endif -#define IS_WHITESPACE(c) (c==' ' || c=='\t' || c=='\r' || c=='\n') - char *remove_trailing_slash(char *path); const char *strcasestr(const char *haystack, const char *needle); |