├── .gitignore ├── README.md ├── makefile ├── spc.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | **.o 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/spc/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/spc/HEAD/makefile -------------------------------------------------------------------------------- /spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/spc/HEAD/spc.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/spc/HEAD/test.c --------------------------------------------------------------------------------