From 578e5441742d896dfbcce89842f5a2aff1930771 Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 16 Apr 2023 15:41:00 -0500 Subject: [PATCH] Update comments about printf. --- stdio.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stdio.asm b/stdio.asm index 2e440c1..9e975f0 100644 --- a/stdio.asm +++ b/stdio.asm @@ -4793,7 +4793,7 @@ lb3 creturn 4:ptr * ----------------------- * * An 'l' indicates that the 'd', 'o', 'u', 'x' or 'X' argument is -* long. 'L' and 'u' are also accepted for compliance with ANSI C, +* long. 'L' and 'h' are also accepted for compliance with ANSI C, * but have no effect in this implementation. * * Conversion Specifier @@ -4806,10 +4806,11 @@ lb3 creturn 4:ptr * while 'X' generates uppercase hex digits. * c Character. * s String. -* p Pascal string. +* P,b Pascal string. +* p Pointer. * n The argument is (int *); the number of characters written so * far is written to the location. -* f Signed decimal floating point. +* f,F Signed decimal floating point. * e,E Exponential format floating point. * g,G Use f,e or E, as appropriate. * % Write a '%' character.