aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2017-11-13 09:38:07 +0100
committerMarco Paland <marco@paland.com>2017-11-13 09:38:07 +0100
commit5da5ac6cdd0ae16fa073963b40873620d4457d00 (patch)
tree8edfcf25bc7f121520fa490215416491a5c23e97 /README.md
parent7936fc34c4e2f734981832c1201777cb429d4a0a (diff)
downloadprintf-5da5ac6cdd0ae16fa073963b40873620d4457d00.tar.gz
printf-5da5ac6cdd0ae16fa073963b40873620d4457d00.tar.bz2
printf-5da5ac6cdd0ae16fa073963b40873620d4457d00.zip
Update readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 7af4a2f..5ce15a5 100644
--- a/README.md
+++ b/README.md
@@ -46,9 +46,9 @@ void _putchar(char character)
Usage is 1:1 like the according stdio.h library version:
```C
-`int printf(const char* format, ...);`
-`int sprintf(char* buffer, const char* format, ...);`
-`int snprintf(char* buffer, size_t count, const char* format, ...);`
+int printf(const char* format, ...);
+int sprintf(char* buffer, const char* format, ...);
+int snprintf(char* buffer, size_t count, const char* format, ...);
```
**Due to genaral security reasons it is highly recommended to use `snprintf` (with the max buffer size as `count` parameter) only.**