├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets └── stig.png ├── env.sh ├── install.sh └── src ├── lib └── json.hh ├── main.cc ├── ob ├── belle.hh ├── parg.hh ├── string.cc ├── string.hh └── term.hh └── stig ├── lang.cc ├── lang.hh ├── stig.cc └── stig.hh /.gitignore: -------------------------------------------------------------------------------- 1 | *.*.sw* 2 | build 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/README.md -------------------------------------------------------------------------------- /assets/stig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/assets/stig.png -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- 1 | printf "\nSetting Environment Variables\n" 2 | 3 | export APP="stig" 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/install.sh -------------------------------------------------------------------------------- /src/lib/json.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/lib/json.hh -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/ob/belle.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/ob/belle.hh -------------------------------------------------------------------------------- /src/ob/parg.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/ob/parg.hh -------------------------------------------------------------------------------- /src/ob/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/ob/string.cc -------------------------------------------------------------------------------- /src/ob/string.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/ob/string.hh -------------------------------------------------------------------------------- /src/ob/term.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/ob/term.hh -------------------------------------------------------------------------------- /src/stig/lang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/stig/lang.cc -------------------------------------------------------------------------------- /src/stig/lang.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/stig/lang.hh -------------------------------------------------------------------------------- /src/stig/stig.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/stig/stig.cc -------------------------------------------------------------------------------- /src/stig/stig.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octobanana/stig/HEAD/src/stig/stig.hh --------------------------------------------------------------------------------