Modify readme & features

This commit is contained in:
Tilen Majerle 2019-11-02 12:44:33 +01:00
parent 192620d561
commit 9e597ee3e9
2 changed files with 7 additions and 7 deletions

View File

@ -4,11 +4,12 @@
- 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
- Supports different memory regions to allow use of fragmented memories
- Suitable for embedded applications with fragmented memories
- Suitable for automotive applications
- 100% open source, code available
- Suitable for automotive applications
- Supports advanced free/realloc algorithms to optimize memory usage
- Operating system ready, thread-safe API
- User friendly MIT license
## Documentation

View File

@ -8,13 +8,12 @@
*
* - 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
* - Implements optimized reallocation algorithm to find best block
* - Supports different memory regions to allow use of fragmented memories
* - Suitable for embedded applications with fragmented memories
* - Suitable for automotive applications
* - Operating system ready
* - 100% open source, code available
* - Supports advanced free/realloc algorithms to optimize memory usage
* - Operating system ready, thread-safe API
* - User friendly MIT license
*
* \section sect_resources Download & Resources