Go to end of file if we are reading from a file (not stdin).
| 272 | |
| 273 | // Go to end of file if we are reading from a file (not stdin). |
| 274 | void InputDevices::gotoEof() |
| 275 | { |
| 276 | fb_assert(m_ifp.indev_fpointer); |
| 277 | if (m_ifp.indev_fpointer != stdin) |
| 278 | fseek(m_ifp.indev_fpointer, 0, SEEK_END); |
| 279 | } |
| 280 | |
| 281 | InputDevices::Command::Command(const char* statement, const char* term) |
| 282 | : m_statement(getPool()) |