This commit is contained in:
Loic Deridder
2025-01-24 13:47:50 +01:00
parent 48aa956d8f
commit 4764c4a679
3 changed files with 181 additions and 0 deletions

25
sprintf/ft_sprintf.h Normal file
View File

@@ -0,0 +1,25 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_sprintf.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lderidde <lderidde@student.s19.be> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/24 13:44:08 by lderidde #+# #+# */
/* Updated: 2025/01/24 13:47:01 by lderidde ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_SPRINTF_H
# define FT_SPRINTF_H
# include <stdlib.h>
# include <stdarg.h>
# include <stdio.h>
# include "../lib/libft/libft.h"
char *ft_strfjoin(char *s1, char *s2);
char *ft_strfjoinc(char *s1, char c);
char *ft_strfjoind(char *s1, char *s2);
#endif