aboutsummaryrefslogtreecommitdiff
path: root/lib/src/fmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/fmt.c')
-rw-r--r--lib/src/fmt.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/src/fmt.c b/lib/src/fmt.c
index b0840de..56d95ed 100644
--- a/lib/src/fmt.c
+++ b/lib/src/fmt.c
@@ -11,7 +11,7 @@ static const char* num2dec(char* buf, unsigned long len, unsigned long long num)
}
while (num > 0 && pbuf != buf) {
- char d = (char)(num % 10) + '0';
+ char d = (char)(num % 10) + '0';
*(--pbuf) = d;
num /= 10;
}
@@ -81,6 +81,10 @@ int vfmt(char* buf, unsigned long len, const char* fmt, va_list ap) {
const char* ptr = num2hex(scratch, sizeof(scratch), val);
puts(ptr);
} break;
+ case 'c': {
+ char c = va_arg(ap, int); // By C standard, value passed to varg smaller than `sizeof(int)` will be converted to int.
+ put(c);
+ } break;
case 's': {
const char* ptr = va_arg(ap, const char*);
puts(ptr);