Re: Ответ: Ответ: LIBBB: parse_config()

2008-07-09 Thread Rob Landley
On Tuesday 08 July 2008 16:40:14 Vladimir Dronnikov wrote: Cool! But we need to not just process continuations and comments but also to parse the line into some (possibly variable) amount of whitespaces-delimited tokens. There's no obvious reason to mix these two issues. A function that

Re: Ответ: Ответ: LIBBB: parse_config()

2008-07-09 Thread Tito
On Wednesday 09 July 2008 14:35:50 Rob Landley wrote: On Tuesday 08 July 2008 16:40:14 Vladimir Dronnikov wrote: Cool! But we need to not just process continuations and comments but also to parse the line into some (possibly variable) amount of whitespaces-delimited tokens. There's

Re: Ответ: Ответ: LIBBB: parse_config()

2008-07-09 Thread Tito
On Wednesday 09 July 2008 18:01:17 Tito wrote: On Wednesday 09 July 2008 14:35:50 Rob Landley wrote: On Tuesday 08 July 2008 16:40:14 Vladimir Dronnikov wrote: Cool! But we need to not just process continuations and comments but also to parse the line into some (possibly variable)

Re: Ответ: Ответ: LIBBB: parse_config()

2008-07-09 Thread Vladimir Dronnikov
Hmmm! 1. The only major difference from what I proposed on (09.07.2008 2:16) is to use a bunch on xmalloc_fgetline() (which in turn uses a bunch of fgetc()) along with malloc/free cycles. I still think then if a file can be processed in-memory it should be processed in-memory. Though a FEATURE

Ответ: Ответ: LIBBB: parse_config()

2008-07-08 Thread Vladimir Dronnikov
Cool! But we need to not just process continuations and comments but also to parse the line into some (possibly variable) amount of whitespaces-delimited tokens. And, as I mentioned earlier, we need to use the collected tokens in unobtrusive way in the applets. Can you go on and code these