mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +08:00
15 lines
342 B
C
15 lines
342 B
C
![]() |
/* Minix editline */
|
||
|
#ifndef __EDITLINE_H__
|
||
|
#define __EDITLINE_H__
|
||
|
|
||
|
/*
|
||
|
** For compatibility with FSF readline.
|
||
|
*/
|
||
|
extern rl_reset_terminal(char *p);
|
||
|
extern void rl_initialize(void);
|
||
|
|
||
|
extern char *readline(const char *prompt);
|
||
|
extern void add_history(char *line); /* OBSOLETE: Made part of readline(). -- kjb */
|
||
|
|
||
|
#endif /* __EDITLINE_H__ */
|