-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncat.c
executable file
·31 lines (28 loc) · 1.1 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: jraymond <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/13 13:17:10 by jraymond #+# #+# */
/* Updated: 2017/11/16 16:36:01 by jraymond ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
char *idest;
idest = dest;
while (*idest)
idest++;
while (n && *src)
{
*idest = *src;
idest++;
src++;
n--;
}
*idest = '\0';
return (dest);
}