From 919a16c385003e8033ee089327ae74d003e95a06 Mon Sep 17 00:00:00 2001 From: Eyal Rozenberg Date: Tue, 12 Dec 2023 15:47:51 +0200 Subject: [PATCH] Tweak in `README.md` --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 020d140..a9b9cb9 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,7 @@ | Table of contents | |:------------------| -|[Thinking of forking this repository?](#thinking-of-forking-this-repository-read-this-first)
[Highlights, design goals and the mpaland->eyalroz fork](#highlights-design-goals-and-the-mpaland-eyalroz-fork)
[Using the `printf` library in your project](#using-the-printf-library-in-your-project)
- [CMake options and preprocessor definitions](#cmake-options-and-preprocessor-definitions) -
- [Reducing compiled code size](#reducing-compiled-code-size)
[Library API](#library-api)
- [Implemented functions](#implemented-functions)
- [Supported Format Specifiers](#supported-format-specifiers)
- [Return Value](#return-value)
[Contributing](#contributing)
[License](#license)
| +|[Thinking of forking this repository?](#thinking-of-forking-this-repository-read-this-first)
[Highlights, design goals and the mpaland->eyalroz fork](#highlights-design-goals-and-the-mpaland-eyalroz-fork)
[Using the `printf` library in your project](#using-the-printf-library-in-your-project)
- [CMake options and preprocessor definitions](#cmake-options-and-preprocessor-definitions)
- [Reducing compiled code size](#reducing-compiled-code-size)
[Library API](#library-api)
- [Implemented functions](#implemented-functions)
- [Supported Format Specifiers](#supported-format-specifiers)
- [Return Value](#return-value)
[Contributing](#contributing)
[License](#license)
| This is a small but **fully-loaded** implementation of C's formatted printing family of functions. It was originally designed by Marco Paland, with the primary use case being in embedded systems - where these functions are unavailable, or when one needs to avoid the memory footprint of linking against a full-fledged libc. The library can be made even smaller by partially excluding some of the supported format specifiers during compilation. The library stands alone, with **No external dependencies**.