├── LICENSE ├── Makefile ├── README.md ├── example.c ├── inc ├── dalloc.h ├── dalloc_conf.h └── dalloc_types.h └── src └── dalloc.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/README.md -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/example.c -------------------------------------------------------------------------------- /inc/dalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/inc/dalloc.h -------------------------------------------------------------------------------- /inc/dalloc_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/inc/dalloc_conf.h -------------------------------------------------------------------------------- /inc/dalloc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/inc/dalloc_types.h -------------------------------------------------------------------------------- /src/dalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkyEng1neering/dalloc/HEAD/src/dalloc.c --------------------------------------------------------------------------------