aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2018-09-14 15:04:59 +0200
committerMarco Paland <marco@paland.com>2018-09-14 15:04:59 +0200
commitc235b5cd6eb541f87de4ff76487ca39c20153f5b (patch)
treee20fef0e6952de26d5bf73e9e780eb9b566006be
parent21a282a2a427cb33d12d1d31ae8aee14d9bbb8c3 (diff)
downloadprintf-c235b5cd6eb541f87de4ff76487ca39c20153f5b.tar.gz
printf-c235b5cd6eb541f87de4ff76487ca39c20153f5b.tar.bz2
printf-c235b5cd6eb541f87de4ff76487ca39c20153f5b.zip
chore(readme): update readme
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index eb360fa..348a30c 100644
--- a/README.md
+++ b/README.md
@@ -22,13 +22,13 @@ There is a boatload of so called 'tiny' printf implementations around. So why th
I've tested many implementations, but most of them have very limited flag/specifier support, a lot of other dependencies or are just not standard compliant and failing most of the test suite.
Therefore I decided to write an own, final implementation which meets the following items:
- - Very small implementation (around 500 code lines)
+ - Very small implementation (around 600 code lines)
- NO dependencies, no libs, just one module file
- Support of all important flags, width and precision sub-specifiers (see below)
- Support of decimal/floating number representation (with an own fast itoa/ftoa)
- Reentrant and thread-safe, malloc free, no static vars/buffers
- LINT and compiler L4 warning free, mature, coverity clean, automotive ready
- - Extensive test suite (> 330 test cases) passing
+ - Extensive test suite (> 340 test cases) passing
- Simply the best *printf* around the net
- MIT license