30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_strncpy.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/07/16 15:08:22 by cchauvet #+# #+# */
|
||
|
/* Updated: 2022/07/21 19:55:13 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
char *ft_strncpy(char *dest, char *src, unsigned int n)
|
||
|
{
|
||
|
unsigned int i;
|
||
|
|
||
|
i = 0;
|
||
|
while (src[i] != '\0' && i < n)
|
||
|
{
|
||
|
dest[i] = src[i];
|
||
|
i++;
|
||
|
}
|
||
|
while (i < n)
|
||
|
{
|
||
|
dest[i] = '\0';
|
||
|
i++;
|
||
|
}
|
||
|
return (dest);
|
||
|
}
|