GCC Code Coverage Report


Directory: src/
File: dynamic_lib/lib.cpp
Date: 2024-12-30 15:39:09
Exec Total Coverage
Lines: 7 7 100.0%
Functions: 2 2 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 #include "lib.h"
2 #include "text_conversion_constexpr.h"
3 #include <cstring>
4 #include <span>
5
6 1 void title_case(char* text)
7 {
8 1 const auto length = std::strlen(text);
9
10 1 std::span<char> temp(text, length);
11
12 1 text_conversion_constexpr::convert_to_title_case(temp);
13 1 }
14
15 1 const char* version()
16 {
17 1 return text_conversion_constexpr::version();
18 }
19