├── .gitignore ├── Makefile ├── README.md └── bindp.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongboy/bindp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongboy/bindp/HEAD/README.md -------------------------------------------------------------------------------- /bindp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongboy/bindp/HEAD/bindp.c --------------------------------------------------------------------------------