-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strncat.c
31 lines (28 loc) · 1.14 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
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chrhuang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/07 13:15:04 by chrhuang #+# #+# */
/* Updated: 2018/11/12 13:20:22 by chrhuang ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
char *tmp;
tmp = dest;
while (*tmp != '\0')
tmp = tmp + 1;
while (*src != '\0' && n != 0)
{
*tmp = *src;
tmp = tmp + 1;
src = src + 1;
n = n - 1;
}
*tmp = '\0';
return (dest);
}