Re: [RFCv2 01/16] stringlist: add from_space_separated_string

2015-06-02 Thread Duy Nguyen
On Tue, Jun 2, 2015 at 7:02 AM, Stefan Beller sbel...@google.com wrote: diff --git a/string-list.h b/string-list.h index d3809a1..88c18e9 100644 --- a/string-list.h +++ b/string-list.h @@ -19,6 +19,7 @@ struct string_list { #define STRING_LIST_INIT_DUP { NULL, 0, 0, 1, NULL } void

Re: [RFCv2 01/16] stringlist: add from_space_separated_string

2015-06-02 Thread Stefan Beller
On Tue, Jun 2, 2015 at 8:10 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Tue, Jun 2, 2015 at 5:42 AM, Duy Nguyen pclo...@gmail.com wrote: On Tue, Jun 2, 2015 at 7:02 AM, Stefan Beller sbel...@google.com wrote: diff --git a/string-list.h b/string-list.h index d3809a1..88c18e9 100644 ---

Re: [RFCv2 01/16] stringlist: add from_space_separated_string

2015-06-02 Thread Eric Sunshine
On Tue, Jun 2, 2015 at 5:42 AM, Duy Nguyen pclo...@gmail.com wrote: On Tue, Jun 2, 2015 at 7:02 AM, Stefan Beller sbel...@google.com wrote: diff --git a/string-list.h b/string-list.h index d3809a1..88c18e9 100644 --- a/string-list.h +++ b/string-list.h @@ -19,6 +19,7 @@ struct string_list {

[RFCv2 01/16] stringlist: add from_space_separated_string

2015-06-01 Thread Stefan Beller
This function parses a space separated string into a string list. Signed-off-by: Stefan Beller sbel...@google.com --- string-list.c | 12 string-list.h | 1 + 2 files changed, 13 insertions(+) diff --git a/string-list.c b/string-list.c index 2a32a3f..f71384f 100644 ---