CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2021/11/19 10:29:17
Modified files:
regress/lib/libcrypto/man: check_complete.pl
Log message:
Make function prototype parsing a bit stricter,
reducing the risk of accidental misparsing:
Require whitespace after the function return type (before the
asterisk indicating that the function returns a pointer, if any)
and do not accept whitespace between the function name and the
opening parenthesis of the parameter list. These changes are not
a problem because we want that style for KNF reasons anyway.