├── .gitignore ├── COPYING-WTFPL ├── Makefile ├── README.md ├── pact.c └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | pact 2 | -------------------------------------------------------------------------------- /COPYING-WTFPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickodell/pact/HEAD/COPYING-WTFPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickodell/pact/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickodell/pact/HEAD/README.md -------------------------------------------------------------------------------- /pact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickodell/pact/HEAD/pact.c -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickodell/pact/HEAD/test.sh --------------------------------------------------------------------------------