| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "html_medium.h" 2 : #include <wchar.h> 3 : 4 240 : int html_medium_char_width(uint32_t cp) { 5 240 : int w = wcwidth((wchar_t)cp); 6 240 : return (w < 0) ? 0 : w; 7 : } |
| Generated by: LCOV version 2.0-1 |