-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcpy.c
30 lines (27 loc) · 1.1 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
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcpy.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: chrhuang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/07 12:59:28 by chrhuang #+# #+# */
/* Updated: 2018/11/12 13:22:35 by chrhuang ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcpy(char *dest, const char *src)
{
char *tmp;
if (*src == '\0')
dest[0] = '\0';
tmp = dest;
while (*src != '\0')
{
*tmp = *src;
tmp = tmp + 1;
src = src + 1;
}
*tmp = '\0';
return (dest);
}