...
- Functions return 0 if false, and non-zero if true [1].
- Function failures can typically be indicated by -1 or any non-zero number.
- Comparison functions return 0 if the arguments are equal and non-zero otherwise (such as the standard library function strcmp(), which has a trinary return value) [2]).
Noncompliant Code Example
...