Re: [dev] URI Parser

From: <sylvain.bertrand_AT_gmail.com>
Date: Thu, 13 Jun 2019 09:51:52 +0000

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 syntax of C:
 - one loop statement: #define loop for(;;)
 - no enum.
 - try to avoid qualifiers (const...).

-- 
Sylvain
Received on Thu Jun 13 2019 - 11:51:52 CEST

This archive was generated by hypermail 2.3.0 : Thu Jun 13 2019 - 12:36:08 CEST