aboutsummaryrefslogtreecommitdiffstats
path: root/printf.c
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2017-11-21 14:49:58 +0100
committerMarco Paland <marco@paland.com>2017-11-21 14:49:58 +0100
commitc6c8d964201b26765efa48d9d54467a792759329 (patch)
tree6dca52256a28eb16b0cc601caf3e8af5a4d1bb2e /printf.c
parent7158a6f50f60008d7b475155f57120113c85cf69 (diff)
downloadprintf-c6c8d964201b26765efa48d9d54467a792759329.tar.gz
printf-c6c8d964201b26765efa48d9d54467a792759329.tar.bz2
printf-c6c8d964201b26765efa48d9d54467a792759329.zip
Updated comments
Diffstat (limited to 'printf.c')
-rw-r--r--printf.c6
1 files changed, 3 insertions, 3 deletions
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)