Changes between Initial Version and Version 1 of coding_rules
- Timestamp:
- 07/27/10 11:36:29 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
coding_rules
v1 v1 1 2 == Coding rules == 3 4 - variables should not use capital letters. Use underscores to make variables more understandable. 5 - Function names and enums should not use any underscore. Use capital letters to make names more understandable. 6 Example: 7 {{{ 8 #!c 9 Input* vx_input=GetInput(inputs,VxInput); 10 }}}