* In rare cases, we may want to pull the remainder of the line input * verbatim, rather than lexing it. For example, when assigning literal * values associated with scripts. In that case, return a static pointer to * the current location in the input buffer. The caller must be aware that * the contents are not stable if other lex/input calls are made. */
| 84 | * the contents are not stable if other lex/input calls are made. |
| 85 | */ |
| 86 | char * |
| 87 | db_get_line(void) |
| 88 | { |
| 89 | |
| 90 | return (db_lp); |
| 91 | } |
| 92 | |
| 93 | static void |
| 94 | db_flush_line() |
no outgoing calls
no test coverage detected