NO DECLARATIONS AND ASSIGNING IN SAME LINE

This commit is contained in:
LinlyBoi
2023-08-22 14:04:17 +03:00
parent 8231851dd5
commit 4b798e200c

View File

@@ -10,8 +10,8 @@
**/ **/
int _printf(const char *format, ...) int _printf(const char *format, ...)
{ {
int buff_idx = 0; int buff_idx;
int fmt_idx = 0; int fmt_idx;
unsigned int identifiers, BUFF_SIZE; unsigned int identifiers, BUFF_SIZE;
char *buffer, *next, c; char *buffer, *next, c;
va_list args; va_list args;