Main public logs
From NCOT Wiki
Jump to navigationJump to search
Combined display of all available logs of NCOT Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 13:12, 29 July 2025 Wiki admin talk contribs created page Coding Convention (Created page with "= C Coding Convention = This convention defines naming and style rules for writing clean, consistent, and self-documenting C code. == General Principles == * Use '''lowercase_with_underscores''' for variables and functions. * Use '''PascalCase''' for struct and enum type names. * Use prefixes to namespace functions and globals by module/library. * Keep names brief but descriptive. == 1. Enums == === Type Name === * Use '''PascalCase''' with an `_e` suffix. <syntaxhi...")