produce a string which will position the cursor at if output */
| 342 | |
| 343 | /* produce a string which will position the cursor at <row,col> if output */ |
| 344 | char * |
| 345 | tgoto(const char *cm, int col, int row) |
| 346 | { |
| 347 | return tparam(cm, cmbuf, (int) (sizeof cmbuf), row, col, 0, 0); |
| 348 | } |
| 349 | |
| 350 | /* format a parameterized string, ala sprintf */ |
| 351 | char * |
no test coverage detected