20 lines
295 B
C
20 lines
295 B
C
#include <stdio.h>
|
|
|
|
#include "fluid/chunk.h"
|
|
|
|
|
|
|
|
|
|
int fluid_FluidMemoryManagementTests(int argc, char **argv){
|
|
|
|
//allocate a sparse array
|
|
SparseChunkArray * sparseArray = fluid_create_sparse_array();
|
|
|
|
|
|
|
|
//free a sparse array
|
|
fluid_free_sparse_array(sparseArray);
|
|
|
|
return 0;
|
|
}
|