├── .gitignore ├── .travis.yml ├── Ginseng.h ├── LICENSE.txt ├── Terminal.h ├── changelog.md ├── main.cpp ├── media ├── logo.png ├── logo.svg └── sshot.1.png ├── readme.md └── tests ├── CMakeLists.txt └── tests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | .clang-format 3 | .vscode 4 | main.cpp 5 | build -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/.travis.yml -------------------------------------------------------------------------------- /Ginseng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/Ginseng.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/Terminal.h -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/changelog.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/main.cpp -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/sshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/media/sshot.1.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/readme.md -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chewax/Ginseng/HEAD/tests/tests.cpp --------------------------------------------------------------------------------