GCC Code Coverage Report


Directory: ./
File: lib/mymemory/my_free.c
Date: 2024-06-05 02:24:39
Exec Total Coverage
Lines: 5 5 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** my_free
4 ** File description:
5 ** The my_free.c
6 */
7
8 #include "mymemory.h"
9
10 2 void my_free(void)
11 {
12 2 my_malloc(0, 0);
13 2 my_calloc(0, 0, 0);
14 2 my_realloc(NULL, 0, 0);
15 2 }
16