Fix braces + init_paging args
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user