├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmod.c ├── cmod.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/README.md -------------------------------------------------------------------------------- /cmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/cmod.c -------------------------------------------------------------------------------- /cmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/cmod.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudwu/cmod/HEAD/test.c --------------------------------------------------------------------------------