From 9d05111498d6feff02db13b7762718ee5917a6b0 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Mon, 4 Apr 2022 14:22:08 -0700 Subject: Comment on decimal point inclusion --- usr/string.c | 1 + 1 file changed, 1 insertion(+) (limited to 'usr') diff --git a/usr/string.c b/usr/string.c index 6129d38..fa95001 100644 --- a/usr/string.c +++ b/usr/string.c @@ -10,6 +10,7 @@ char* ulong_to_string(unsigned long value, char* data) if (t==0) break; dptr -= 1; + // Add decimal point to distinguish orders more easily if (i == 2) { *dptr = '.'; dptr -= 1; -- cgit v1.2.1