| 491 | } |
| 492 | |
| 493 | int16_t getCharacterWidth(Font font, char32_t character) |
| 494 | { |
| 495 | return _characterWidths[getFontBaseIndex(font) / 224][character - 32]; |
| 496 | } |
| 497 | |
| 498 | void setCharacterWidth(Font font, char32_t character, int16_t width) |
| 499 | { |
no test coverage detected