From c6c8d964201b26765efa48d9d54467a792759329 Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Tue, 21 Nov 2017 14:49:58 +0100 Subject: Updated comments --- printf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'printf.c') diff --git a/printf.c b/printf.c index f634519..fd29785 100644 --- a/printf.c +++ b/printf.c @@ -35,13 +35,13 @@ #include "printf.h" -// buffer size used for printf +// buffer size used for printf (created on stack) #define PRINTF_BUFFER_SIZE 128U -// ntoa conversion buffer size, this must be big enough to hold one converted numeric number +// ntoa conversion buffer size, this must be big enough to hold one converted numeric number (created on stack) #define NTOA_BUFFER_SIZE 32U -// ftoa conversion buffer size, this must be big enough to hold one converted float number +// ftoa conversion buffer size, this must be big enough to hold one converted float number (created on stack) #define FTOA_BUFFER_SIZE 32U // define this to support floating point (%f) -- cgit v1.2.3