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 |