I've been frustrated by the lack of a truly portable, no-dependency printf for embedded and kernel development. Most solutions are either too bloated or missing key features.
So I built Uprintf. It's a single-header library that gives you full printf (flags, width, precision, floats, even custom specifiers) from bare metal to desktop, with zero dependencies or #ifdef hell.
Key features:
· One header file, no dependencies, no dynamic allocation
· Full standard support: %d, %x, %f, %.*s, etc.
· Extensible with custom format handlers (add %T for your project)
· Configurable: disable floats, set locale, etc.
· MIT Licensed.
GitHub:
https://github.com/Ferki-git-creator/Uprintf
I'd love your feedback and contributions!
Is it really possible to reconcile "no bloat" with "fully standard compliant"?
Maybe have a look at https://github.com/eyalroz/printf, if only for the test suite, which looks pretty comprehensive and still fails.
Maybe "key features" does not mean the same in all projects, making every project appear "unnecessarily bloated while missing key features" in every other context?