-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strcpy.c
27 lines (24 loc) · 1.04 KB
/
ft_strcpy.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nmncube <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/01 14:24:15 by nmncube #+# #+# */
/* Updated: 2019/06/26 12:34:37 by nmncube ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcpy(char *dst, const char *src)
{
int k;
k = 0;
while (src[k] != '\0')
{
dst[k] = src[k];
k++;
}
dst[k] = '\0';
return (dst);
}