• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Dec-2017-

history/H15-Dec-2017-557379

vt100/H15-Dec-2017-423305

READMEH A D23-Jul-2013600 1613

history.hH A D23-Jul-20132.9 KiB10052

module.amH A D23-Jul-2013487 2217

private.hH A D30-Apr-20141.4 KiB4839

tinyrl.cH A D06-May-201543.2 KiB1,6581,152

tinyrl.hH A D23-Jul-20137 KiB22993

vt100.hH A D06-Jul-20166.2 KiB142105

README

1/**
2\defgroup tinyrl "Tiny Readline Library"
3@{
4
5This library provides a simple replacement of the "readline" functionality.
6
7The readline interface and implementation has some fundamental flaws when
8it comes to try and run it within a single memory space envrioment. e.g. vxWorks
9- The use of global variables prevents multiple sessions from co-existing.
10- The comprehensiveness of the library makes it large, and it contains
11  more features than are needed in an embedded system.
12- It relies on other (large) libraries which are not typically available on an
13  embedded system e.g. termcap.
14
15@}
16*/