├── .editorconfig ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cgo.1 ├── cgo.c └── cgorc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore build artifacts 2 | *.o 3 | cgo 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/README.md -------------------------------------------------------------------------------- /cgo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/cgo.1 -------------------------------------------------------------------------------- /cgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/cgo.c -------------------------------------------------------------------------------- /cgorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kieselsteini/cgo/HEAD/cgorc --------------------------------------------------------------------------------