orangeduck / mpc

A Parser Combinator library for C
Other
2.67k stars 292 forks source link

mpc.h: Add prototype for mpcf_freefold #129

Closed nmeum closed 4 years ago

nmeum commented 4 years ago

The mpcf_freefold is documented in the README but currently not declared in the header file. As such, adding the latter was probably just forgotten at some point. This change adds the required function prototype.


BTW: Compiling with -Wstrict-prototypes would allow catching such errors.

orangeduck commented 4 years ago

Thanks!