-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcpy.c
25 lines (23 loc) · 1.01 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alaulom <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/04 14:04:42 by alaulom #+# #+# */
/* Updated: 2014/11/17 10:56:37 by alaulom ### ########.fr */
/* */
/* ************************************************************************** */
char *ft_strcpy(char *dst, const char *src)
{
int a;
a = 0;
while (src[a])
{
dst[a] = src[a];
a++;
}
dst[a] = 0;
return (dst);
}