-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strncat.c
30 lines (27 loc) · 1.18 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
27
28
29
30
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_strncat.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: cgarrot <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/07 02:07:41 by cgarrot #+# ## ## #+# */
/* Updated: 2018/10/07 08:39:50 by cgarrot ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *s1, const char *s2, size_t n)
{
unsigned int len;
unsigned int i;
i = 0;
len = ft_strlen(s1);
while (i < n && s2[i])
{
s1[len + i] = s2[i];
i++;
}
s1[len + i] = '\0';
return (s1);
}