cc07873937
* remove automatically checked property * Allow PR-submitters to self-document. We don't ever use these, so allow submitters of PRs to self-document.
688 B
688 B
Manually checked properties
- No stringification macros
- Output-parameter pointers in functions are on the left
- Negative return values on failure of API functions (within restrictions of FO transform).
- variable declarations at the beginning (except in
for (size_t i=...
) - Optional:
- All integer types are of fixed size, using
stdint.h
types (includinguint8_t
instead ofunsigned char
) - Integers used for indexing are of size
size_t
- All integer types are of fixed size, using