| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "html_medium.h" 2 : 3 : /* Deterministic stub for unit tests: every printable codepoint = 1 column. */ 4 1205 : int html_medium_char_width(uint32_t cp) { 5 1205 : if (cp < 0x20 || cp == 0x7F) return 0; 6 1205 : return 1; 7 : } |
| Generated by: LCOV version 2.0-1 |