xref: /netbsd-src/external/bsd/ntp/dist/include/ntp_lineedit.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: ntp_lineedit.h,v 1.1.1.1 2009/12/13 16:54:51 kardel Exp $	*/
2 
3 
4 /*
5  * ntp_lineedit.h - generic interface to various line editing libs
6  */
7 
8 int		ntp_readline_init(const char *prompt);
9 void		ntp_readline_uninit(void);
10 
11 /*
12  * strings returned by ntp_readline go home to free()
13  */
14 char *		ntp_readline(int *pcount);
15 
16