5.2.1 : The header (asterics_alloc.h)

The asterics_alloc.h is :
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