1/*	$NetBSD: ntp_lineedit.h,v 1.5 2020/05/25 20:47:19 christos Exp $	*/
2
3
4/*
5 * ntp_lineedit.h - generic interface to various line editing libs
6 */
7
8int		ntp_readline_init(const char *prompt);
9void		ntp_readline_uninit(void);
10
11/*
12 * strings returned by ntp_readline go home to free()
13 */
14char *		ntp_readline(int *pcount);
15
16