-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strncat.c
26 lines (23 loc) · 1.05 KB
/
ft_strncat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ewilliam <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/29 18:45:50 by ewilliam #+# #+# */
/* Updated: 2016/11/29 21:07:46 by ewilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *s1, const char *s2, size_t n)
{
char *ret;
ret = s1;
while (*s1)
s1++;
while (*s2 && n--)
*s1++ = *s2++;
*s1 = '\0';
return (ret);
}