tools/nolibc/stdio: add a minimal [vf]printf() implementation
authorWilly Tarreau <w@1wt.eu>
Mon, 7 Feb 2022 16:23:33 +0000 (17:23 +0100)
committerPaul E. McKenney <paulmck@kernel.org>
Thu, 21 Apr 2022 00:05:44 +0000 (17:05 -0700)
commit7e4346f4a3a611a6233ba388080c1426545da4fc
tree45cea3f8e81daf181e88032ee899dafca9c37808
parente3e19052d54db8d492b8f82f8516139469bad5d3
tools/nolibc/stdio: add a minimal [vf]printf() implementation

This adds a minimal vfprintf() implementation as well as the commonly
used fprintf() and printf() that rely on it.

For now the function supports:
  - formats: %s, %c, %u, %d, %x
  - modifiers: %l and %ll
  - unknown chars are considered as modifiers and are ignored

It is designed to remain minimalist, despite this printf() is 549 bytes
on x86_64. It would be wise not to add too many formats.

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/include/nolibc/stdio.h