├── .gitignore ├── LICENSE ├── Makefile ├── README.ja.md ├── README.md ├── demo.gif ├── sl.1 ├── sl.1.ja ├── sl.c └── sl.h /.gitignore: -------------------------------------------------------------------------------- 1 | /sl 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/Makefile -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/demo.gif -------------------------------------------------------------------------------- /sl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/sl.1 -------------------------------------------------------------------------------- /sl.1.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/sl.1.ja -------------------------------------------------------------------------------- /sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/sl.c -------------------------------------------------------------------------------- /sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtoyoda/sl/HEAD/sl.h --------------------------------------------------------------------------------