mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-24 22:02:39 +02:00
27 lines
296 B
Markdown
27 lines
296 B
Markdown
# Code Style
|
|
|
|
## Types
|
|
`TypesAreCapitalizedLikeThis`
|
|
|
|
## Enums
|
|
`EnumType_EnumName`
|
|
|
|
## Struct members
|
|
`like_this`
|
|
|
|
`notlikethis`
|
|
|
|
## Local variables
|
|
`like_this`
|
|
|
|
`notlikethis`
|
|
|
|
## Global variables (or global statics)
|
|
`g_variableName`
|
|
|
|
## Functions
|
|
`modulenameFunctionName`
|
|
|
|
## Macros
|
|
`LIKE_THIS`
|