test_mem.h
572 Bytes
/*************************************************************
test_mem.h : Nintendo 64 Music Tools Library Sample
(c) Copyright 1998, Software Creations (Holdings) Ltd.
Version 3.11
N64DD demo memory manager header file.
**************************************************************/
/* Memory manager function prototypes */
#ifndef _TEST_MEM_H_
#define _TEST_MEM_H_
void MemInit (void);
void *MemMalloc (unsigned long size);
void MemFree (void *memory);
/* debug function */
void MemShowStatus (void);
#endif /* _TEST_MEM_H_ */
/* end of file */