summaryrefslogtreecommitdiff
path: root/libft/ft_vprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/ft_vprintf.c')
-rw-r--r--libft/ft_vprintf.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libft/ft_vprintf.c b/libft/ft_vprintf.c
new file mode 100644
index 0000000..db53f97
--- /dev/null
+++ b/libft/ft_vprintf.c
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_vprintf.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: kdx <kdx @student.42angouleme.fr +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2022/10/06 14:29:46 by kdx #+# #+# */
+/* Updated: 2022/10/06 14:33:43 by kdx ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft.h"
+
+t_i32 ft_vprintf(const char *fmt, va_list va)
+{
+ return (ft_vdprintf(1, fmt, va));
+}