GCC Code Coverage Report


Directory: ./
File: lib/my/my_putstr.c
Date: 2024-06-05 00:29:21
Exec Total Coverage
Lines: 3 3 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2023
3 ** my_putstr
4 ** File description:
5 ** Prints a string (str) in stdout
6 */
7
8 #include "my.h"
9 #include <unistd.h>
10
11 188 int my_putstr(char const *str)
12 {
13 188 write(1, str, my_strlen(str));
14 188 return 0;
15 }
16