nanoprintf
nanoprintf copied to clipboard
The smallest public printf implementation for its feature set.
Results
12
nanoprintf issues
Sort by
recently updated
recently updated
newest added
Hi, thank you a lot for your work. I'm using nanoprintf at work by copying and pasting the nanoprintf.h file inside my cpp project. I noticed that inside the nanoprintf.h...
enhancement
Fixes the float formatting issue discovered by @josesimoes in #273. Example of failing code: ```C npf_snprintf(..., ..., "%.5g", (double)INFINITY); ``` Output: `00inf`