From 8e53406774e973e2a5793ccfe5069c514a82fb8a Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Sun, 6 Aug 2006 13:53:53 +0000 Subject: renamce cstrtok to buffer2array. please don't rename functions; especially to names that look extremely std-lib-ish. also, don't use isspace, apparently it's local dependent and potentially consideres ' ' or '\t' not to be a space, or considers other characters to be a space. git-svn-id: https://svn.musicpd.org/mpd/trunk@4574 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/buffer2array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/buffer2array.h') diff --git a/src/buffer2array.h b/src/buffer2array.h index cecd3b6d3..e12f0ceed 100644 --- a/src/buffer2array.h +++ b/src/buffer2array.h @@ -27,6 +27,6 @@ * The arguments buffer and array are modified. * Returns the number of elements tokenized. */ -int cstrtok(char *buffer, char *array[], const int max); +int buffer2array(char *buffer, char *array[], const int max); #endif -- cgit v1.2.3