1
0
Fork 0

Update readme

development
Marco Paland 8 years ago
parent 7936fc34c4
commit 5da5ac6cdd

@ -46,9 +46,9 @@ void _putchar(char character)
Usage is 1:1 like the according stdio.h library version: Usage is 1:1 like the according stdio.h library version:
```C ```C
`int printf(const char* format, ...);` int printf(const char* format, ...);
`int sprintf(char* buffer, const char* format, ...);` int sprintf(char* buffer, const char* format, ...);
`int snprintf(char* buffer, size_t count, 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.** **Due to genaral security reasons it is highly recommended to use `snprintf` (with the max buffer size as `count` parameter) only.**

Loading…
Cancel
Save