├── .gitignore ├── README ├── gc.cpp ├── gc.h └── makefile /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | *.a 4 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/gc/HEAD/README -------------------------------------------------------------------------------- /gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/gc/HEAD/gc.cpp -------------------------------------------------------------------------------- /gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/gc/HEAD/gc.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doublec/gc/HEAD/makefile --------------------------------------------------------------------------------