21 lines
1018 B
C
21 lines
1018 B
C
|
|
/* ************************************************************************** */
|
||
|
|
/* */
|
||
|
|
/* ::: :::::::: */
|
||
|
|
/* ft_vprintf_pointer.c :+: :+: :+: */
|
||
|
|
/* +:+ +:+ +:+ */
|
||
|
|
/* By: gbaconni@student.42lausanne.ch +#+ +:+ +#+ */
|
||
|
|
/* +#+#+#+#+#+ +#+ */
|
||
|
|
/* Created: 2022/01/20 11:56:16 by gbaconni #+# #+# */
|
||
|
|
/* Updated: 2022/04/13 08:00:14 by gbaconni ### lausanne.ch */
|
||
|
|
/* */
|
||
|
|
/* ************************************************************************** */
|
||
|
|
|
||
|
|
#include "libftprintf.h"
|
||
|
|
|
||
|
|
int ft_vprintf_pointer(const char *format, va_list ap)
|
||
|
|
{
|
||
|
|
(void) ap;
|
||
|
|
(void) format;
|
||
|
|
return (0);
|
||
|
|
}
|