| 873 | // |
| 874 | |
| 875 | static int print_string( ctl* control, SSHORT offset) |
| 876 | { |
| 877 | SSHORT n = print_byte(control); |
| 878 | while (--n >= 0) |
| 879 | print_char(control, offset); |
| 880 | |
| 881 | PUT_BYTE(' '); |
| 882 | return 0; |
| 883 | } |
| 884 | |
| 885 | |
| 886 | //____________________________________________________________ |
no test coverage detected