Open maedoc opened 8 years ago
This involves scanning the header files and changing all signatures. And then looking through the files and changing corresponding headers there too right?
Yes, but I don't actually want to do this yet. I'm still refactoring the API a little bit.
Some function signatures are too complex, and it's far too easy to forget order. If there's no point in creating an interface to support the function call, it could be as simple as converting
to
where in C99 calling can be concise almost like keyword arguments,
and in older dialects more verbose
but we already assume C99 per variadic macros, so this isn't too much an issue.