Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2024 | ||
3 | ** template | ||
4 | ** File description: | ||
5 | ** The my_pop_front.c | ||
6 | */ | ||
7 | /** | ||
8 | * @file my_pop_front.c | ||
9 | * @brief The file containing the my_pop_front function | ||
10 | * @author Nicolas TORO | ||
11 | */ | ||
12 | |||
13 | #include "mylist.h" | ||
14 | |||
15 | 1693 | node_t *my_pop_front(node_t **begin) | |
16 | { | ||
17 | 1693 | node_t *tmp = *begin; | |
18 | |||
19 |
2/2✓ Branch 0 taken 814 times.
✓ Branch 1 taken 879 times.
|
1693 | if (*begin == NULL) |
20 | 814 | return NULL; | |
21 | 879 | *begin = (*begin)->next; | |
22 |
2/2✓ Branch 0 taken 53 times.
✓ Branch 1 taken 826 times.
|
879 | if (*begin != NULL) |
23 | 53 | (*begin)->prev = NULL; | |
24 | 879 | return tmp; | |
25 | } | ||
26 |