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