CONTRIBUTING: mention that EXIT_ codes should be used

This commit is contained in:
Sebastian Falbesoner
2025-02-14 13:42:28 +01:00
parent c855581728
commit 13d389629a

View File

@@ -74,6 +74,7 @@ In addition, libsecp256k1 tries to maintain the following coding conventions:
* User-facing comment lines in headers should be limited to 80 chars if possible.
* All identifiers in file scope should start with `secp256k1_`.
* Avoid trailing whitespace.
* Use the constants `EXIT_SUCCESS`/`EXIT_FAILURE` (defined in `stdlib.h`) to indicate program execution status for examples and other binaries.
### Tests