-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strappend.c
executable file
·18 lines (16 loc) · 1.04 KB
/
ft_strappend.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strappend.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/18 19:11:32 by akharrou #+# #+# */
/* Updated: 2019/04/18 19:11:37 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "../Includes/string_42.h"
char *ft_strappend(char const *s1, char const *s2, int free_s1, int free_s2)
{
return (ft_strjoinfre(s1, s2, free_s1, free_s2));
}