pqc/.github/pull_request_template.md
Thom Wiggers 78257d4299
Add small note to PR template
[ci skip]
2019-04-16 13:39:26 +02:00

860 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).
  • const arguments are labeled as const
  • variable declarations at the beginning (except in for (size_t i=...)
  • Optional:
    • All integer types are of fixed size, using stdint.h types (including uint8_t instead of unsigned char)
    • Integers used for indexing are of size size_t