├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── inline-c-cpp.cabal ├── src └── Language │ └── C │ └── Inline │ └── Cpp.hs ├── stack.yaml └── test └── tests.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | THIS REPO HAS BEEN MERGED INTO 2 | -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /inline-c-cpp.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/inline-c-cpp.cabal -------------------------------------------------------------------------------- /src/Language/C/Inline/Cpp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/src/Language/C/Inline/Cpp.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/inline-c-cpp/HEAD/test/tests.hs --------------------------------------------------------------------------------