mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-09 05:59:13 -04:00
16 lines
325 B
C
16 lines
325 B
C
/* $NetBSD: ntp_lineedit.h,v 1.1.1.1 2009/12/13 16:54:51 kardel Exp $ */
|
|
|
|
|
|
/*
|
|
* 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);
|
|
|