├── .gitignore ├── LICENSE ├── Makefile ├── README.markdown ├── example.c ├── linenoise.c └── linenoise.h /.gitignore: -------------------------------------------------------------------------------- 1 | linenoise_example 2 | *.dSYM 3 | history.txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/README.markdown -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/example.c -------------------------------------------------------------------------------- /linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/linenoise.c -------------------------------------------------------------------------------- /linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/linenoise/HEAD/linenoise.h --------------------------------------------------------------------------------