I have build a mini CRT static library, called crtmin.lib, for pcc32 compiler.
This library includes the most common, (61), functions for C language.
Of course there are some other functions inside this, which are used
only internally by the compiler.
To use it with pcc32 put the library in lib folder
and use the command line: pcc32 /c /MM mysource.c
Those functions have the same names with MS CRT library for three reasons:
1). The users don't have to learn new names.
2). The functions' references are the same with MSDN.
3). Users can compile older source code with pcc32 without any problem.
Thanks a lot to Vortex who checked my crtmin library.
Note:
Because I forgot some functions, I rebuilded the crtmin library.
Download it again.
Manos.