The MASM Forum

Specialised Projects => CoderStudio => Topic started by: Manos on April 20, 2019, 08:38:52 PM

Title: crtmin
Post by: Manos on April 20, 2019, 08:38:52 PM
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.
Title: Re: crtmin
Post by: AlexN on July 10, 2019, 04:38:34 AM
Quote from: Manos on April 20, 2019, 08:38:52 PM
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.
Great! Thanks!
Title: Re: crtmin
Post by: Manos on July 10, 2019, 07:12:20 PM
Thank you Alex.

Now I am working on Link32.
I added the option: /DEF:<file>, so that
Link32 accepts definition, (.def) files for making DLLs.
In this way Link32 can build DLLs writen in assembly language.
Soon I 'll finish this work.

Manos.