Skip to content

Commit ee9deb1

Browse files
committed
Add 800 line guidance to AGENTS.md
1 parent e0a5523 commit ee9deb1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

AGENTS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@
1818
* Two space indents for C sources.
1919
* Avoid the use of preprocessor macros when possible.
2020
* Use bool types instead of int for boolean logic.
21-
* uSE `nullptr` instead of NULL or other workarounds.
21+
* Use `nullptr` instead of NULL or other workarounds.
2222
* Prefer multiple bools instead of bitmasks where reasonable.
2323
* Use enums instead of multiple #define or constexpr statements.
2424
* Obey the C code naming conventions below.
25+
* Avoid source files longer than 800 lines long.
2526

2627
## C code naming conventions
2728

0 commit comments

Comments
 (0)