1938f78bf1
[ci skip]
854 B
854 B
Manually checked properties
#ifdef
s only for header encapsulationapi.h
does not include other files- 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).
const
arguments are labeled asconst
- (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
- variable declarations at the beginning (except in
for (size_t i=...
)