blocky2019 / lwmem

Lightweight dynamic memory manager library for embedded systems with memory constraints. It implements malloc, calloc, realloc and free functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lightweight dynamic memory manager

Features

  • Written in ANSI C99, compatible with size_t for size data types
  • Implements standard C library functions for memory allocation, malloc, calloc, realloc and free
  • Supports different memory regions to allow use of framented memories
  • Uses first-fit algorithm to search free block
  • Suitable for embedded applications with fragmented memories
  • Suitable for automotive applications
  • 100% open source, code available
  • User friendly MIT license

Documentation

Full API documentation with description and examples is available and is regulary updated with the source changes

http://majerle.eu/documentation/lwmem/html/index.html

Contribution

I invite you to give feature request or report a bug. Please use issues tracker.

About

Lightweight dynamic memory manager library for embedded systems with memory constraints. It implements malloc, calloc, realloc and free functions

License:MIT License


Languages

Language:C 100.0%