| 1233 | } |
| 1234 | |
| 1235 | int SdCardFont::buildAdvanceTable(const char* utf8Text, uint8_t styleMask) { |
| 1236 | return buildAdvanceTableRange(&utf8Text, &utf8Text + 1, false, false, styleMask); |
| 1237 | } |
| 1238 | |
| 1239 | int SdCardFont::buildAdvanceTable(const std::vector<std::string>& words, bool includeHyphen, uint8_t styleMask) { |
| 1240 | return buildAdvanceTableRange(words.begin(), words.end(), words.size() > 1, includeHyphen, styleMask); |
no test coverage detected