printf test 18: atoi->itoa

This commit is contained in:
2025-07-21 00:30:17 +02:00
parent 336a178d30
commit 7db299bcbd

View File

@@ -109,8 +109,8 @@ section .rodata
printf16Str db "%x | %#10x | %10x | %#10x | %010x | %#010x\n",EOS
printf17 db TAB,"printf(",DQUO,"Ran\dom in\v\a\li%\d test%\n",DQUO,"): ",NL,TAB,TAB,EOS
printf17Str db "Ran\dom in\v\a\li%\d test%\n",EOS
printf18 db TAB,"printf(",DQUO,"atoi(12345, 9, 0, 0): %s <<should print (null)\n",DQUO,", atoi(12345, 9, 0, 0)):",NL,TAB,TAB,EOS
printf18Str db "atoi(12345, 9, 0, 0): %s <<should print (null)\n",EOS
printf18 db TAB,"printf(",DQUO,"itoa(12345, 9, 0, 0): %s <<should print (null)\n",DQUO,", itoa(12345, 9, 0, 0)):",NL,TAB,TAB,EOS
printf18Str db "itoa(12345, 9, 0, 0): %s <<should print (null)\n",EOS
; strlen()
msgStrlen db NL,"TEST strlen()",NL,EOS
strlen1 db TAB,"strlen(str1): %d",NL,EOS