Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 1015 Bytes

CHANGELOG.md

File metadata and controls

21 lines (11 loc) · 1015 Bytes

Changelog

All notable changes to this project are documented in this file. On the releases page you can see all released versions and download the latest version.

[1.0.0] - 2022-03-06

This release change the memory allocation types.

To process large file, stack allocations must be changed to heap allocation. But memory management in c must be made manually with free.

  • Replace all stack allocation to heap allocations.

    Change all allocation with alloca to malloc.

    For more information visit the issue #3.

  • Add main in comment for test and debug developments.

  • Remove all _alloca

    Delete _alloca to remove compiler dependency.