| 631 | */ |
| 632 | |
| 633 | void |
| 634 | xputs(const char *s) |
| 635 | { |
| 636 | int col, row; |
| 637 | |
| 638 | col = (int) ttyDisplay->curx; |
| 639 | row = (int) ttyDisplay->cury; |
| 640 | |
| 641 | if (!iflags.grmode) { |
| 642 | txt_xputs(s, col, row); |
| 643 | #ifdef SCREEN_VGA |
| 644 | } else if (iflags.usevga) { |
| 645 | vga_xputs(s, col, row); |
| 646 | #endif |
| 647 | #ifdef SCREEN_VESA |
| 648 | } else if (iflags.usevesa) { |
| 649 | vesa_xputs(s, col, row); |
| 650 | #endif |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | /* same signature as 'putchar()' with potential failure result ignored */ |
| 655 | int |
nothing calls this directly
no test coverage detected