├── .travis.yml ├── Generated_code_sample.txt ├── LICENSE ├── Makefile ├── README.md └── src └── main.c /.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | compiler: gcc 3 | os: osx 4 | script: make 5 | -------------------------------------------------------------------------------- /Generated_code_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoahuke/universalmigparser/HEAD/Generated_code_sample.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoahuke/universalmigparser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoahuke/universalmigparser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoahuke/universalmigparser/HEAD/README.md -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocoahuke/universalmigparser/HEAD/src/main.c --------------------------------------------------------------------------------