Deprecito

This commit is contained in:
2023-08-21 13:47:47 +03:00
parent bc32277deb
commit f316833e4c
3 changed files with 18 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ int _printf(const char *format, ...)
break;
case 'c': /* add 1 byte and i++ */
c = (char) va_arg(args, int);
append(buffer, c);
BUFF_SIZE += 1;
buff_idx += 1;
break;