| 467 | } |
| 468 | |
| 469 | int |
| 470 | glyphrep(const char *op) |
| 471 | { |
| 472 | int reslt = 0, glyph = NO_GLYPH; |
| 473 | |
| 474 | if (!glyphid_cache) |
| 475 | reslt = 1; /* for debugger use only; no cache available */ |
| 476 | nhUse(reslt); |
| 477 | reslt = glyphrep_to_custom_map_entries(op, &glyph); |
| 478 | if (reslt) |
| 479 | return 1; |
| 480 | return 0; |
| 481 | } |
| 482 | |
| 483 | int |
| 484 | add_custom_nhcolor_entry( |
no test coverage detected