* Utility routine - discard tokens through end-of-line. */
| 170 | * Utility routine - discard tokens through end-of-line. |
| 171 | */ |
| 172 | void |
| 173 | db_skip_to_eol(void) |
| 174 | { |
| 175 | int t; |
| 176 | do { |
| 177 | t = db_read_token(); |
| 178 | } while (t != tEOL); |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * Results of command search. |
no test coverage detected