repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
external
/
bsd
/
ntp
/
dist
/
include
/
ntp_lineedit.h
blob
7021c5d53c56297b2b08931aaefdb2e200aa726c
1
/* $NetBSD$ */
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