├── .gitignore ├── Makefile ├── README.md ├── dat.c ├── storage.c └── storage.h /.gitignore: -------------------------------------------------------------------------------- 1 | dat 2 | deps 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/libdat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/libdat/HEAD/README.md -------------------------------------------------------------------------------- /dat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/libdat/HEAD/dat.c -------------------------------------------------------------------------------- /storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/libdat/HEAD/storage.c -------------------------------------------------------------------------------- /storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/libdat/HEAD/storage.h --------------------------------------------------------------------------------