|
mb_free |
|
|
void* mb_free( void* pMemory )
Deallocates or frees a memory block previously allocated withe mb_malloc or mb_calloc (or mb_malloc_strcpy).
Example
char* pFileName = mb_malloc( _MAX_PATH );
strcpy( pFileName, "MyBASIC2.BIS" ); mb_load_file( bas, pFileName ); mb_free( pFileName );
|