drawio generator

This commit is contained in:
Nathan Lebrun
2025-01-24 14:10:50 +01:00
parent 4764c4a679
commit 035bf45ad0
14 changed files with 238 additions and 55 deletions

View File

@@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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 "../../libft.h"
char *ft_strfjoin(char *s1, char *s2);
char *ft_strfjoinc(char *s1, char c);
char *ft_strfjoind(char *s1, char *s2);
#endif