From 9e597ee3e9bfedcafc7a864fd84a3c9fc2e51dc2 Mon Sep 17 00:00:00 2001 From: Tilen Majerle Date: Sat, 2 Nov 2019 12:44:33 +0100 Subject: [PATCH] Modify readme & features --- README.md | 7 ++++--- docs/src/_mainpage.h | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ac8f8fb..d5b8f4c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/src/_mainpage.h b/docs/src/_mainpage.h index f6c3565..3b36925 100644 --- a/docs/src/_mainpage.h +++ b/docs/src/_mainpage.h @@ -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