summaryrefslogtreecommitdiffstats
path: root/baseline/source/susan/wccmalloc.h
blob: dbb2ada608bf2c9116fbde45d2a8b809c4b8a02a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _WCCMALLOC_H
#define _WCCMALLOC_H

void* susan_wccmalloc( unsigned int numberOfBytes );
//! Frees ALL allocated memory space
void susan_wccfreeall( void );
void *susan_wccmemcpy( void* dstpp, const void* srcpp, unsigned int len );
void susan_wccmemset( void *p, int value, unsigned int num );

#endif