logo

blog

My little blog can’t be this cute! git clone https://hacktivis.me/git/blog.git
commit: c6a22ed0818d6093568b8700424f6de4d0688c41
parent d0ebbe439869742ac121b416c4f7b26f1ac38a88
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 23 Oct 2015 19:50:33 +0200

import http://suckless.org/coding_style

Diffstat:

Acoding style.shtml183+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 183 insertions(+), 0 deletions(-)

diff --git a/coding style.shtml b/coding style.shtml @@ -0,0 +1,183 @@ +<!DOCTYPE html> +<html> + <head> +<!--#include file="/templates/head.shtml" --> + <title>Coding Style — lanodan’s cyber-home</title> + </head> + <body> +<!--#include file="/templates/en/nav.shtml" --> + <main> + <h1>Coding Style</h1> + <p>Note that the following are guidelines and the most important aspect of style is consistency. Strive to keep your style consistent with the project on which you are working.</p> + <h2>Recommended Reading</h2> + <p>The following contain good information, some of which is repeated below, some of which is contradicted below.</p> + <ul> + <li><a href="http://doc.cat-v.org/bell_labs/pikestyle">http://doc.cat-v.org/bell_labs/pikestyle</a></li> + <li><a href="https://www.kernel.org/doc/Documentation/CodingStyle">https://www.kernel.org/doc/Documentation/CodingStyle</a></li> + <li><a href="http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man9/style.9?query=style&amp;sec=9">http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man9/style.9?query=style&amp;sec=9</a></li> + </ul> + + + <h2>File Layout</h2> + <ul> + <li>Comment with LICENSE and possibly short explanation of file/tool</li> + <li>Headers</li> + <li>Macros</li> + <li>Types</li> + <li>Function declarations<ul> + <li>Include variable names</li> + <li>For short files these can be left out</li> + <li>Group/order in logical manner</li> + </ul></li> + <li>Global variables</li> + <li>Function definitions in same order as declarations</li> + <li><code>main</code></li> + </ul> + <h2>C Features</h2> + <ul> + <li>Use C99 without extensions (ISO/IEC 9899:1999)<ul> + <li>When using gcc compile with -std=c99 -pedantic</li> + </ul></li> + <li>Use POSIX.1-2008<ul> + <li>When using gcc define <code>_POSIX_C_SOURCE 200809L</code></li> + <li>Alternatively define <code>_XOPEN_SOURCE 700</code></li> + </ul></li> + <li>Do not mix declarations and code</li> + <li>Do not use for loop initial declarations</li> + <li>Use <code>/* */</code> for comments, not <code>//</code></li> + <li>Variadic macros are acceptable, but remember<ul> + <li><code>__VA_ARGS__</code> not a named parameter</li> + <li>Arg list cannot be empty</li> + </ul></li> + </ul> + <h2>Blocks</h2> + <ul> + <li>All variable declarations at top of block</li> + <li><code>{</code> on same line preceded by single space (except functions)</li> + <li><code>}</code> on own line unless continuing statement (<code>if else</code>, <code>do while</code>, &hellip;)</li> + <li>Use block for single statements iff<ul> + <li><p>Inner statement needs a block</p> +<pre><code> for (;;) { + if (foo) { + bar; + baz; + } + } +</code></pre></li> + <li><p>Another branch of same statement needs a block</p> +<pre><code> if (foo) { + bar; + } else { + baz; + qux; + } +</code></pre></li> + </ul></li> + </ul> + <h2>Leading Whitespace</h2> + <ul> + <li>Use tabs for indentation</li> + <li>Use spaces for alignment<ul> + <li>This means no tabs except beginning of line</li> + <li>Everything will line up independent of tab size</li> + <li>Use spaces not tabs for multiline macros as the indentation level is 0, where the <code>#define</code> began</li> + </ul></li> + </ul> + <h2>Functions</h2> + <ul> + <li>Return type and modifiers on own line</li> + <li>Function name and argument list on next line</li> + <li>Opening <code>{</code> on own line (function definitions are a special case of blocks as they cannot be nested)</li> + <li>Functions not used outside translation unit should be declared and defined <code>static</code></li> + </ul> + <h2>Variables</h2> + <ul> + <li>Global variables not used outside translation unit should be declared <code>static</code></li> + <li>In declaration of pointers the <code>*</code> is adjacent to variable name, not type</li> + </ul> + <h2>Keywords</h2> + <ul> + <li>Use a space after <code>if</code>, <code>for</code>, <code>while</code>, <code>switch</code> (they are not function calls)</li> + <li>Do not use a space after the opening <code>(</code> and before the closing <code>)</code></li> + <li>Always use <code>()</code> with <code>sizeof</code></li> + <li>Do not use a space with <code>sizeof()</code> (it does act like a function call)</li> + </ul> + <h2>Switch</h2> + <ul> + <li>Do not indent cases another level</li> + <li>Comment cases that FALLTHROUGH</li> + </ul> + <h2>Headers</h2> + <ul> + <li>Place system/libc headers first in alphabetical order<ul> + <li>If headers must be included in a specific order comment to explain</li> + </ul></li> + <li>Place local headers after an empty line</li> + <li>When writing and using local headers<ul> + <li>Do not use <code>#ifndef</code> guards</li> + <li>Instead ensure they are included where and when they are needed</li> + <li>Read <a href="https://talks.golang.org/2012/splash.article#TOC_5.">https://talks.golang.org/2012/splash.article#TOC_5.</a></li> + <li>Read <a href="http://plan9.bell-labs.com/sys/doc/comp.html">http://plan9.bell-labs.com/sys/doc/comp.html</a></li> + </ul></li> + </ul> + <h2>User Defined Types</h2> + <ul> + <li>Do not use <code>type_t</code> naming (it is reserved for POSIX and less readable)</li> + <li>Typedef structs</li> + <li>Do not typedef builtin types</li> + <li>Capitalize the type name</li> + <li><p>Typedef the type name, if possible without first naming the struct</p> +<pre><code> typedef struct { + double x, y, z; + } Point; +</code></pre></li> + </ul> + <h2>Line Length</h2> + <ul> + <li>Keep lines to reasonable length (current debate as to reasonable)</li> + <li>If your lines are too long your code is likely too complex</li> + </ul> + <h2>Tests and Boolean Values</h2> + <ul> + <li>Do not test against <code>NULL</code> explicitly</li> + <li>Do not test against <code>0</code> explicitly</li> + <li>Do not use <code>bool</code> types (stick to integer types)</li> + <li><p>Assign at declaration when possible</p> +<pre><code> Type *p = malloc(sizeof(*p)); + if (!p) + hcf(); +</code></pre></li> + <li><p>Otherwise use compound assignment and tests unless the line grows too long</p> +<pre><code> if (!(p = malloc(sizeof(*p)))) + hcf(); +</code></pre></li> + </ul> + <h2>Handling Errors</h2> + <ul> + <li><p>When functions <code>return -1</code> for error test against <code>0</code> not <code>-1</code></p> +<pre><code> if (func() &lt; 0) + hcf(); +</code></pre></li> + <li>Use <code>goto</code> to unwind and cleanup when necessary instead of multiple nested levels</li> + <li><code>return</code> or <code>exit</code> early on failures instead of multiple nested levels</li> + <li>Unreachable code should have a NOTREACHED comment</li> + <li>Think long and hard on whether or not you should cleanup on fatal errors</li> + </ul> + <h2>Enums vs #define</h2> + <ul> + <li><p>Use enums for values that are grouped semantically and #define otherwise.</p> +<pre><code> #define MAXSZ 4096 + #define MAGIC1 0xdeadbeef + + enum { + DIRECTION_X, + DIRECTION_Y, + DIRECTION_Z + }; +</code></pre></li> + </ul> + <span class="right">&copy; 2006-2015 suckless.org community | <a href="http://garbe.us/Contact">Impressum</a> + </main> +<!--#include file="/templates/en/footer.html" --> + </body> +</html>