-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncpy.c
28 lines (25 loc) · 1.11 KB
/
ft_strncpy.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: malexand <malexand@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/05/06 23:55:38 by alex #+# #+# */
/* Updated: 2017/02/16 17:33:38 by malexand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncpy(char *dest, const char *src, size_t n)
{
size_t count;
count = 0;
while (src[count] && count < n)
{
dest[count] = src[count];
count++;
}
while (count != n)
dest[count++] = '\0';
return (dest);
}