Added source code self documentation guidelines.

This commit is contained in:
likewise 2003-04-01 13:34:56 +00:00
parent a28af1be11
commit 132b09ce09

View File

@ -6,13 +6,21 @@ First of all as you may already know lwIP is a volunteer project so feedback
to fixes or questions might often come late. Hopefully the bug and patch tracking to fixes or questions might often come late. Hopefully the bug and patch tracking
features of Savannah help us not lose users' input. features of Savannah help us not lose users' input.
Source code style: Source code style:
- end debug messages with a newline (\n) - indentation is two spaces per level, no tabs.
- end debug messages with a trailing newline (\n).
- no space between function and opening bracket. - no space between function and opening bracket.
- one space between keyword and opening bracket. - one space between keyword and opening bracket.
- one space and no newline before opening curly braces. - one space and no newline before opening curly braces.
- spaces surrounding assignment and comparisons.
- use current source code style as further reference.
Source code self documentation style:
- JavaDoc compliant and Doxygen compatible.
- Function documentation above functions in .c files, not .h files.
- Use current documentation style as further reference.
Bug reports and patches: Bug reports and patches: