Files
printf/printf.c
2023-08-20 23:08:19 +03:00

57 lines
1.0 KiB
C

#include "main.h"
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
/**
* _printf - printf but worse
* @format: format string
* @...: ???
* Return: characters written
**/
int _printf(const char *format, ...)
{
int i, j;
unsigned int identifiers, BUFF_SIZE;
char *buffer, *next;
va_list args;
va_start(args, format);
identifiers = _contains(format, '%');
BUFF_SIZE = _strlen(format) - (identifiers * 2);
if (!format) /* No string. No laundry */
return (0);
i = 0; /*TODO:gotta rename those*/
j = 0;
while (format)
{
if ((*format == '%') && (*(format + 1)))
{
switch (*(format + 1)) /*this needs to shrink*/
{
case 's':
next = va_arg(args, char*); /*Store string temporarily*/
_strcpy(&buffer[j], next);
j += _strlen(next);
BUFF_SIZE += _strlen(next);
break;
case 'c': /* add 1 byte and i++ */
break;
case '%': /*add 1 byte*/
break;
}
}
else
{
*(buffer + i) = *(format + i);
i++;
}
}
write(1, buffer, BUFF_SIZE);
return (_strlen(buffer));
}