c-style icon indicating copy to clipboard operation
c-style copied to clipboard

My favorite C programming practices.

Results 13 c-style issues
Sort by recently updated
recently updated
newest added

Changes to make more readable

I think the 80 character line limit clashes with the previously mentioned push toward using the newest tooling that you can. (C89 v C99 v C11) Additionally, most systems are...

The example link [here](https://github.com/mcinglis/c-style#document-your-struct-invariants-and-provide-invariant-checkers) is broken, could you provide the source from `alphabet.h` in your `trie.c` repository?

your example with `run_server( "3490" );` doesn't work if the struct has default arguments ``` c #include struct run_server_options { char * port; int backlog; }; #define run_server( ... )...