Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 6ef5d93f59820a2a156a282f13852c2e > files > 26

nsd-3.2.2-1mdv2010.0.i586.rpm

Coding Style for NSD

[This is incomplete, but a start]

o No space after function/keyword
o { on the same line as the if/while/for statement
o If an 'if' has one statement in the 'then' part omit the braces:
        if (!x) 
                return NULL;

  Indent the 'then' part with tabs
o Function:
  return-type
  functionname(parameters, ...)
  {
  <tab>...
  }