Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2023 | ||
3 | ** my_strcpy | ||
4 | ** File description: | ||
5 | ** Copy a string (src) and paste it on another string (dest) | ||
6 | */ | ||
7 | |||
8 | 1 | char *my_strcpy(char *dest, char const *src) | |
9 | { | ||
10 | 1 | int i = 0; | |
11 | |||
12 |
2/2✓ Branch 0 taken 6 times.
✓ Branch 1 taken 1 times.
|
7 | while (src[i] != '\0') { |
13 | 6 | dest[i] = src[i]; | |
14 | 6 | i = i + 1; | |
15 | } | ||
16 | 1 | dest[i] = '\0'; | |
17 | 1 | return dest; | |
18 | } | ||
19 |