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 |