mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
13 lines
251 B
C
13 lines
251 B
C
|
|
/*
|
|
* ntp_lineedit.h - generic interface to various line editing libs
|
|
*/
|
|
|
|
int ntp_readline_init(const char *prompt);
|
|
void ntp_readline_uninit(void);
|
|
|
|
/*
|
|
* strings returned by ntp_readline go home to free()
|
|
*/
|
|
char * ntp_readline(int *pcount);
|
|
|