1 parent e0a5523 commit ee9deb1Copy full SHA for ee9deb1
1 file changed
AGENTS.md
@@ -18,10 +18,11 @@
18
* Two space indents for C sources.
19
* Avoid the use of preprocessor macros when possible.
20
* Use bool types instead of int for boolean logic.
21
-* uSE `nullptr` instead of NULL or other workarounds.
+* Use `nullptr` instead of NULL or other workarounds.
22
* Prefer multiple bools instead of bitmasks where reasonable.
23
* Use enums instead of multiple #define or constexpr statements.
24
* Obey the C code naming conventions below.
25
+* Avoid source files longer than 800 lines long.
26
27
## C code naming conventions
28
0 commit comments