#ifndef SRL_MEMSPACE_H #define SRL_MEMSPACE_H /** * @file * @module{SRL} * @short Memory resources */ /** The memspace abstract type. */ typedef void* srl_memspace_t; /** @this retrieves the size of a memspace @param memsp The memspace @return the size of the memspace */ #define SRL_MEMSPACE_SIZE(memsp) ((memsp)->size) #endif