* Read a line closed with '\n' into the array char bufp[BUFSZ]. * (The '\n' is not stored. The string is closed with a '\0'.) * Reading can be interrupted by an escape ('\033') - now the * resulting string is "\033". */
| 48 | * resulting string is "\033". |
| 49 | */ |
| 50 | void |
| 51 | mac_getlin(const char *query, char *bufp) |
| 52 | { |
| 53 | topl_getlin(query, bufp, false); |
| 54 | } |
| 55 | |
| 56 | /* Read in an extended command - doing command line completion for |
| 57 | * when enough characters have been entered to make a unique command. |
nothing calls this directly
no test coverage detected