Hi there,

I appreciate that quark is progressing, however

On 20 June 2017 at 21:45,  <g...@suckless.org> wrote:
> -enum stati {
> +enum req_field {
> +enum req_method {
> +struct request {
> +enum status {

I really dislike using lowercase enum and struct names. Types should
always be easily distinguishable from global / local variable names
and shouldn't be required to be qualified with enum or struct in the
code (I highly prefer typedef for this eye candy).

I also dislike extending _t or _e or similar postfixes to type names.
Hence I adopted the Plan 9 style a while back to use capitalized type
names. Afair also our coding style suggests that.

Best regards,
Anselm

Reply via email to