├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── src ├── Makefile ├── main.c ├── refcount.c └── refcount.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | refcount 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | default: all 2 | 3 | .DEFAULT: 4 | cd src && $(MAKE) $@ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/src/main.c -------------------------------------------------------------------------------- /src/refcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/src/refcount.c -------------------------------------------------------------------------------- /src/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeraymond/refcount/HEAD/src/refcount.h --------------------------------------------------------------------------------