I have a code written for VS2015 following C99 standard for building static and dynamic library to be used for other part of a project.
I want the libraries to be built for other VS versions as well but need to convert the code into C89 standard.
I found this tool, https://github.com/libav/c99-to-c89 and just went ahead and downloaded the binaries to be used for the conversion instead of building it first from its source.
So I get these 3 files which have to be used : "c99wrap.exe" "c99conv.exe" "makedef"
All the Readme says of using it is: " Usage
c99conv converts preprocessed C sources, the provided c99wrap uses the C preprocessor, converts its output and feeds it to the C compiler.
c99wrap $CC $CFLAGS source
"
Can anyone help me and tell me how am I supposed to use these .exe files for conversion of the C99 C-codes into respective C-89 codes ?
I just need a converted code. Which can be used on any VS version following C89 format.