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