From b305cf96e669ae35a709aa07efe2ad2d88c3ae5e Mon Sep 17 00:00:00 2001 From: Dmitry Murzinov Date: Sat, 18 Feb 2023 09:18:01 +0300 Subject: [PATCH] Add section scanf --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f36b5c3..c992808 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ Permanent URL to this list: https://github.com/iDoka/awesome-embedded-software * [CLI](#cli) * [Menu](#menu) * [printf](#printf) + * [scanf](#scanf) * [Logging](#logging) * [GUI](#gui) * [GUI editors](#gui-editors) @@ -370,6 +371,11 @@ Computer Vision * [nanoprintf](https://github.com/charlesnicholson/nanoprintf) - The smallest public printf implementation for its feature set. * [fmt](https://github.com/fmtlib/fmt) - Modern formatting library providing a fast and safe alternative to C stdio and C++ iostreams. +### scanf + +* [scanf](https://github.com/hisahi/scanf) - Portable implementation of scanf input functions in C. +* [ft_scanf](https://github.com/cbarbier/ft_scanf) - Simple scanf %s %c %d. + ### Logging * [embedded-log](https://github.com/to9/embedded-log) - Small and beautiful embedded log library for mcu.