diff options
Diffstat (limited to 'src/buffer2array.h')
-rw-r--r-- | src/buffer2array.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/buffer2array.h b/src/buffer2array.h index e12f0ceed..fa6882fd9 100644 --- a/src/buffer2array.h +++ b/src/buffer2array.h @@ -21,12 +21,8 @@ #include "../config.h" -/* tokenizes up to max elements in buffer (a null-terminated string) and - * stores the result in array (which must be capable of holding up to - * max elements). Tokenization is based on C string quoting rules. - * The arguments buffer and array are modified. - * Returns the number of elements tokenized. - */ -int buffer2array(char *buffer, char *array[], const int max); +int buffer2array(char *buffer, char ***array); + +void freeArgArray(char **array, int argArrayLength); #endif |