├── LICENSE ├── Makefile ├── README.md ├── memtools.c ├── memtools.h ├── memtools_internal.h ├── memtools_memory_interface.c ├── memtools_memory_interface.h └── memtools_test.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/README.md -------------------------------------------------------------------------------- /memtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools.c -------------------------------------------------------------------------------- /memtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools.h -------------------------------------------------------------------------------- /memtools_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools_internal.h -------------------------------------------------------------------------------- /memtools_memory_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools_memory_interface.c -------------------------------------------------------------------------------- /memtools_memory_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools_memory_interface.h -------------------------------------------------------------------------------- /memtools_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan-bonecutter/memtools/HEAD/memtools_test.c --------------------------------------------------------------------------------