#ifndef FAST_ALLOC_H #define FAST_ALLOC_H typedef struct FastAllocStruct* FastAllocType; FastAllocType FastAllocInit(unsigned TypeSz, unsigned BlkSz, unsigned AllgnBits, unsigned Verbose); void *FastAllocNew(FastAllocType alloc); void FastAllocDestroy(FastAllocType alloc); #endif /* FAST_ALLOC_H */