Re: [dev] URI Parser

2019-06-13 Thread sylvain . bertrand
Hi, Try to follow roughly the coding guideline from the linux kernel. lower case, no typedefs, sized types (u8, u32, s32...) and cast in case of the use of an external API, use of goto for "very sequential code error management", etc. I do even remove keywords from the already way too rich synt

Re: [dev] URI Parser

2019-06-13 Thread Kurt Van Dijck
On do, 13 jun 2019 08:49:58 +0200, Laslo Hunhold wrote: > On Thu, 13 Jun 2019 01:22:48 +0300 > Adrian Grigore wrote: > > Dear Adrian, > > > I started writing a RFC3986 compliant URI parser. It's not done yet. > > Can I get some feedback? > > > > https://adi.tilde.institute/tmp/uri.h > > https:/