| 455 | } |
| 456 | |
| 457 | int |
| 458 | match_glyph(char *buf) |
| 459 | { |
| 460 | char workbuf[BUFSZ]; |
| 461 | |
| 462 | /* buf contains a G_ glyph reference, not an S_ symbol. |
| 463 | There could be an R-G-B color attached too. |
| 464 | Let's get a copy to work with. */ |
| 465 | Snprintf(workbuf, sizeof workbuf, "%s", buf); /* get a copy */ |
| 466 | return glyphrep(workbuf); |
| 467 | } |
| 468 | |
| 469 | int |
| 470 | glyphrep(const char *op) |
no test coverage detected