aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: a2622adccb5dfcf00993ae365184b5ca87f97dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
printf
======

This is a very tiny but fully loaded printf, sprintf and snprintf implementation.
Designed for usage in embedded systems, where printf is not available due to memory issues or avoidance of linking against libc.
You have to provide your own _putchar() low level function as output.

All type and format specifiers are supported.

This is written in C++ and uses a templated itoa. But you can easily port it to plain C if you can't use C++.


Design goals:

 - No dependencies
 - LINT and compiler L4 warning free, clean code
 - Reentrant and thread-safe
 - MIT license