feat(c23): Implement %b and %B format

This commit is contained in:
GrayJack
2025-03-22 20:15:56 -03:00
parent 78d7d66839
commit c7d94ae4d7
4 changed files with 31 additions and 10 deletions
@@ -66,3 +66,9 @@ Testing asprintf...
printed: test string, value: 11
printed: test string 2, value: 13
printed: test string 2, value: 13
C23:
Binary %b: 100
Binary %b alternate: 0b100
Binary %B: 100
Binary %B alternate: 0B100