├── LICENSE ├── Makefile ├── README ├── format.txt ├── nvcachedec.c ├── nvucdump.c ├── readfile.c └── readfile.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/README -------------------------------------------------------------------------------- /format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/format.txt -------------------------------------------------------------------------------- /nvcachedec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/nvcachedec.c -------------------------------------------------------------------------------- /nvucdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/nvucdump.c -------------------------------------------------------------------------------- /readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therontarigo/nvcachetools/HEAD/readfile.c -------------------------------------------------------------------------------- /readfile.h: -------------------------------------------------------------------------------- 1 | void readfile (FILE *f, char **pbuf, size_t *plen); 2 | 3 | --------------------------------------------------------------------------------