NO

Author Topic: Tiny C run-time library  (Read 465 times)

Offline Vortex

  • Member
  • *
  • Posts: 802
    • http://www.vortex.masmcode.com
Tiny C run-time library
« on: September 17, 2023, 08:56:56 PM »
Hello,

Here is a new version of my tiny C run-time library coded with Poasm. The purpose of this library is to create small Pelles C executables. Two samples are included, one for console applications and the other one for GUI applications.
Code it... That's all...

Offline John Z

  • Member
  • *
  • Posts: 796
Re: Tiny C run-time library
« Reply #1 on: September 18, 2023, 10:24:00 AM »
Wow - Thanks.  I grabbed both and will see what I can do.  Good to have something to remove the unneeded to get smaller programs.

John Z

Offline Vortex

  • Member
  • *
  • Posts: 802
    • http://www.vortex.masmcode.com
Re: Tiny C run-time library
« Reply #2 on: September 18, 2023, 10:41:37 AM »
Hi John,

You are welcome. Note that my tiny library does not initialize any memory management system. You will have to use the functions exported by msvcrt.dll to create small executables.
Code it... That's all...