aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMarco Paland <info@paland.com>2015-10-01 14:09:06 +0200
committerMarco Paland <info@paland.com>2015-10-01 14:09:06 +0200
commit8917d48da54d497282d8ce2be6246068b05a8ab6 (patch)
tree85f5f5f4fb9903e0116cd6c38770eabbda4c1685 /README.md
parent65bd4d0d6b09bcd108c936cceced19189b666d17 (diff)
downloadprintf-8917d48da54d497282d8ce2be6246068b05a8ab6.tar.gz
printf-8917d48da54d497282d8ce2be6246068b05a8ab6.tar.bz2
printf-8917d48da54d497282d8ce2be6246068b05a8ab6.zip
Update
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 01be4d4..a2622ad 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,7 @@ 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.
@@ -13,4 +14,5 @@ Design goals:
- No dependencies
- LINT and compiler L4 warning free, clean code
+ - Reentrant and thread-safe
- MIT license