Changes in uspace/lib/draw/gfx/font-8x16.c [2cc1ec0:6d5e378] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/gfx/font-8x16.c
r2cc1ec0 r6d5e378 44 44 * mark glyph if no specific glyph exists. 45 45 * 46 * If found is not null, indicate whether the glyph was found or not.47 *48 46 */ 49 uint16_t fb_font_glyph(const wchar_t ch , bool *found)47 uint16_t fb_font_glyph(const wchar_t ch) 50 48 { 51 if (found)52 *found = true;53 54 49 if (ch == 0x0000) 55 50 return 0; … … 366 361 if (ch == 0xfeff) 367 362 return 2896; 368 369 if (found)370 *found = false;371 363 372 364 return 2898;
Note:
See TracChangeset
for help on using the changeset viewer.