From 5da5ac6cdd0ae16fa073963b40873620d4457d00 Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Mon, 13 Nov 2017 09:38:07 +0100 Subject: Update readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') 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.** -- cgit v1.2.3