Changeset 2cc1ec0 in mainline for uspace/lib/draw/gfx/font-8x16.c
- Timestamp:
- 2014-08-27T21:23:01Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a9763c6
- Parents:
- 613d644
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/draw/gfx/font-8x16.c
r613d644 r2cc1ec0 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 * 46 48 */ 47 uint16_t fb_font_glyph(const wchar_t ch )49 uint16_t fb_font_glyph(const wchar_t ch, bool *found) 48 50 { 51 if (found) 52 *found = true; 53 49 54 if (ch == 0x0000) 50 55 return 0; … … 361 366 if (ch == 0xfeff) 362 367 return 2896; 368 369 if (found) 370 *found = false; 363 371 364 372 return 2898;
Note:
See TracChangeset
for help on using the changeset viewer.