Fix braces + init_paging args

This commit is contained in:
2026-03-11 19:58:00 +01:00
parent 9d409317e2
commit 8e2a612d88
29 changed files with 147 additions and 229 deletions

View File

@@ -26,6 +26,8 @@ if (something) {
}
```
Having no braces for a single statement structure is fine.
Functions should have their opening brace on a separate line, and the same goes for the closing brace:
```c
@@ -59,7 +61,7 @@ Global variables need to have descriptive names. Local variables can be kept sho
## Typedefs
Structures should not be `typedef`'d.
Structures should not be `typedef`'d. However using `typedef` for an enumeration is fine.
## Functions