This commit is contained in:
Miloslav Ciz 2022-11-12 15:49:22 +01:00
parent 06e404c447
commit 58d560ffd4
12 changed files with 65 additions and 8 deletions

View file

@ -46,4 +46,5 @@ a = b;
- **Global variables are great**, use them. **Long functions are fine**.
- **Adhere to C99 or C89 standard**.
- **Try to not create many source files**, many times your project can very well be in a single file which is the ideal case. Create **[header only libraries](header_only.md)** If you have multiple files, keep them in the same directory and try to have just a **[single compilation unit](single_compilation_unit.md)** (only one .c file with several .h files). Try to make files no longer than 10k lines.
- **Use the LRS [version numbering](version_numbering.md) system**.
- **Do not use non-ASCII characters in the source code**.