| 1425 | } |
| 1426 | |
| 1427 | char * |
| 1428 | encglyph(int glyph) |
| 1429 | { |
| 1430 | static char encbuf[20]; /* 10+1 would suffice */ |
| 1431 | |
| 1432 | Sprintf(encbuf, "\\G%04X%04X", svc.context.rndencode, glyph); |
| 1433 | return encbuf; |
| 1434 | } |
| 1435 | |
| 1436 | /* hexdd[] is defined in decl.c */ |
| 1437 |
no outgoing calls
no test coverage detected