Re: [PATCH v3 01/11] argv_array: offer to split a string by whitespace

2018-04-21 Thread Johannes Schindelin
Hi Stefan, On Fri, 20 Apr 2018, Stefan Beller wrote: > On Fri, Apr 20, 2018 at 3:20 PM, Johannes Schindelin > wrote: > > This is a simple function that will interpret a string as a whitespace > > delimited list of values, and add those values into the array. > > > > Note: this function does not

Re: [PATCH v3 01/11] argv_array: offer to split a string by whitespace

2018-04-20 Thread Stefan Beller
On Fri, Apr 20, 2018 at 3:20 PM, Johannes Schindelin wrote: > This is a simple function that will interpret a string as a whitespace > delimited list of values, and add those values into the array. > > Note: this function does not (yet) offer to split by arbitrary delimiters, > or keep empty value

[PATCH v3 01/11] argv_array: offer to split a string by whitespace

2018-04-20 Thread Johannes Schindelin
This is a simple function that will interpret a string as a whitespace delimited list of values, and add those values into the array. Note: this function does not (yet) offer to split by arbitrary delimiters, or keep empty values in case of runs of whitespace, or de-quote Unix shell style. All fo