├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── include └── mode-s.h ├── src └── mode-s.c └── tests └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/README.md -------------------------------------------------------------------------------- /include/mode-s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/include/mode-s.h -------------------------------------------------------------------------------- /src/mode-s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/src/mode-s.c -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watson/libmodes/HEAD/tests/test.c --------------------------------------------------------------------------------