In order to be friendly to various source editors and tools, the white space in C source/header files should be made consistent. Short of applying a full "clang-format" profile (which can sometimes make things less readable, IMO), should at least ensure that:
No trailing spaces on lines
No tabs, only spaces
Use only UNIX-style LF line endings, not Windows CRLF
In order to be friendly to various source editors and tools, the white space in C source/header files should be made consistent. Short of applying a full "clang-format" profile (which can sometimes make things less readable, IMO), should at least ensure that: