#ifndef SC_MEMORY_H #define SC_MEMORY_H #include /** * Allocate an array of `nmemb` items of `size` bytes each * * Like calloc(), but without initialization. * Like reallocarray(), but without reallocation. */ void * sc_allocarray(size_t nmemb, size_t size); #endif