# simple-memory-allocator **Repository Path**: partic/simple-memory-allocator ## Basic Information - **Project Name**: simple-memory-allocator - **Description**: Implement memory allocator function(like malloc realloc free etc.) on a flat memory space 在平坦内存空间中实现一组简单的内存申请函数(像 malloc realloc free etc.) - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-21 - **Last Updated**: 2022-05-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # simple-memory-allocator Implement memory allocator function(like malloc realloc free etc.) on a flat memory space ### How to test: 1. set \$CC environment variable to specify your c compiler. 2. set \$CFLAGS and \$LDFLAGS if necessary. 3. run `make` ### How to use: Refer to test.c and Makefile.