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