README 600 B

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