Previous The allocation/deallocation files |
Parent The allocation/deallocation files |
Outline | Next The source (asterics_alloc.cpp) |
1 2 3 4 5 6 7 |
#ifndef __ASTERICS_ALLOC_H__ #define __ASTERICS_ALLOC_H__ void * asterics_malloc(long unsigned int sizeOfVectorInBytes); void asterics_free(void* ptr); #endif |
Previous The allocation/deallocation files |
Parent The allocation/deallocation files |
Outline | Next The source (asterics_alloc.cpp) |