xref: /netbsd-src/external/bsd/nsd/dist/doc/coding-style (revision 53b02e147d4ed531c0d2a5ca9b3e8026ba3e99b5)
1Coding Style for NSD
2
3[This is incomplete, but a start]
4
5o No space after function/keyword
6o { on the same line as the if/while/for statement
7o If an 'if' has one statement in the 'then' part omit the braces:
8        if (!x)
9                return NULL;
10
11  Indent the 'then' part with tabs
12o Function:
13  return-type
14  functionname(parameters, ...)
15  {
16  <tab>...
17  }
18