forked from hercules-390/hyperion
-
Notifications
You must be signed in to change notification settings - Fork 0
Coding style
Stephen Orso edited this page Mar 12, 2018
·
1 revision
See paradigma, in this case the existing body of code.
Not all code adheres to these suggestions.
Malformed correct code is infinitely better than well formed incorrect code.
Blocks should be indented by four blanks.
Avoid tab characters.
Braces are put on separate lines aligned with the keyword that starts the block, for example:
if(!pCTCBLK) { strlcpy(pBuffer,"*Uninitialized",iBufLen); }
Some favour C++ line comments though these are not strictly C.