Talk:C Coding Standard

Revision as of 17:14, 21 July 2009 by Peter gummer (Talk | contribs) (New page: --~~~~ Possibly the most important item in a C coding standard is "do not use jump instructions". In other words, ''goto'' and ''continue'' must never be used; ''break'' must never be used...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

--Peter gummer 01:14, 22 July 2009 (UTC) Possibly the most important item in a C coding standard is "do not use jump instructions". In other words, goto and continue must never be used; break must never be used except in a switch statement; and return must never be used except as the final instruction of a non-void function.