x
[heimdal.git] / lib / editline / editline.h
blob71604fc55d7b030d13c8eaccf27c05534fdaa514
1 /* Copyright 1992 Simmule Turner and Rich Salz. All rights reserved.
3 * This software is not subject to any license of the American Telephone
4 * and Telegraph Company or of the Regents of the University of California.
6 * Permission is granted to anyone to use this software for any purpose on
7 * any computer system, and to alter it and redistribute it freely, subject
8 * to the following restrictions:
9 * 1. The authors are not responsible for the consequences of use of this
10 * software, no matter how awful, even if they arise from flaws in it.
11 * 2. The origin of this software must not be misrepresented, either by
12 * explicit claim or by omission. Since few users ever read sources,
13 * credits must appear in the documentation.
14 * 3. Altered versions must be plainly marked as such, and must not be
15 * misrepresented as being the original software. Since few users
16 * ever read sources, credits must appear in the documentation.
17 * 4. This notice may not be removed or altered.
19 /* $Id$ */
21 /* This a modifed version of editline */
23 #ifndef __HEIM_EDITLINE
24 #define __HEIM_EDITLINE 1
26 void rl_initialize (void);
27 void add_history (char*);
28 char* readline (const char* prompt);
29 char* rl_complete (char*, int*); /* warning diffrent api the gnu readline */
30 void rl_reset_terminal (char*);
32 #endif