mirror of
https://github.com/troglobit/editline.git
synced 2025-12-16 02:54:46 +08:00
Minix editline v0.1.1
===================== Lots of minor fixes and additions: * Bump version info in configure.ac * User editline.h added, installs to $prefix/include/editline.h - Based on Debian package version, but heavily updated. * Manpage installs to $prefix/share/man/man3/editline.3 - Also slightly updated with contents from Debian package. * Revised README to mention existing Debian package, also cleaned out the old README, which now lives in doc/README * Add TODO file. * Fix package description and make dist to bzip2 tarballs.
This commit is contained in:
14
include/editline.h
Normal file
14
include/editline.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/* 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__ */
|
||||
Reference in New Issue
Block a user