GCC Code Coverage Report


Directory: src/
File: lib_c/c_wrapper.cpp
Date: 2024-12-30 15:39:09
Exec Total Coverage
Lines: 4 4 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 #include "text_conversion_constexpr.h"
2 #include <span>
3
4 extern "C"
5 {
6 3 void text_conversion_c(char* buf, size_t size)
7 {
8 3 std::span<char> temp(buf, size);
9 3 text_conversion_constexpr::convert_to_title_case(temp);
10 3 }
11 }
12