-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_join_free.c
23 lines (20 loc) · 1.01 KB
/
ft_join_free.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_join_free.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ngouy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/04/03 11:44:07 by ngouy #+# #+# */
/* Updated: 2015/11/04 16:06:26 by ngouy ### ########.fr */
/* */
/* ************************************************************************** */
/*
** this function need to be deleted or modified
*/
#include "libft.h"
char *ft_join_free(char *s1, char *s2)
{
free(s2);
return (s1);
}