(s, count)
| 72 | static void db_putstring(char *s, int count); |
| 73 | |
| 74 | static void |
| 75 | db_putstring(s, count) |
| 76 | char *s; |
| 77 | int count; |
| 78 | { |
| 79 | while (--count >= 0) |
| 80 | cnputc(*s++); |
| 81 | } |
| 82 | |
| 83 | static void |
| 84 | db_putnchars(c, count) |
no test coverage detected