1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/.github/pull_request_template.md
Joost Rijneveld d113b45cf0
Fix font size of pull request template header
The previous header size was a bit excessive, overshadowing actual comments.
2019-04-06 14:45:05 +02:00

861 B

Manually checked properties

  • #ifdefs only for header encapsulation
  • api.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 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