Changes between Version 5 and Version 6 of Hacking
- Timestamp:
- 02/15/11 18:01:21 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v5 v6 25 25 == Programming Tips == 26 26 27 === Comments === 28 29 Comments should always use the standard C syntax. C++ style comments are not currently allowed. 30 31 The lines before a comment should be empty. If the comment directly belongs to the following code, there should be no empty line after the comment, except if the comment contains a summary of multiple following code blocks. 32 33 27 34 typical structure of *.c file 28 35