Files
ft_printf/libftprintf/ft_vprintf_char.c

25 lines
1.1 KiB
C
Raw Normal View History

2022-04-13 08:01:46 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_vprintf_char.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gbaconni@student.42lausanne.ch +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/20 11:54:48 by gbaconni #+# #+# */
/* Updated: 2022/04/17 20:56:56 by gbaconni ### lausanne.ch */
2022-04-13 08:01:46 +02:00
/* */
/* ************************************************************************** */
#include "libftprintf.h"
int ft_vprintf_char(const char *format, va_list ap)
{
char c;
int ret;
(void) format;
c = (char) va_arg(ap, int);
ret = ft_putchar(c);
2022-04-13 08:01:46 +02:00
return (ret);
}