mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
48 lines
754 B
C++
48 lines
754 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
// mem.c
|
|
#include <stdlib.h>
|
|
#include <memory.h>
|
|
#include <string.h>
|
|
#include "mem.h"
|
|
|
|
|
|
void *Mem_Malloc( size_t size )
|
|
{
|
|
return malloc( size );
|
|
}
|
|
|
|
void *Mem_ZeroMalloc( size_t size )
|
|
{
|
|
void *p;
|
|
|
|
p = malloc( size );
|
|
memset( (unsigned char *)p, 0, size );
|
|
return p;
|
|
}
|
|
|
|
void *Mem_Realloc( void *memblock, size_t size )
|
|
{
|
|
return realloc( memblock, size );
|
|
}
|
|
|
|
void *Mem_Calloc( int num, size_t size )
|
|
{
|
|
return calloc( num, size );
|
|
}
|
|
|
|
char *Mem_Strdup( const char *strSource )
|
|
{
|
|
return strdup( strSource );
|
|
}
|
|
|
|
void Mem_Free( void *p )
|
|
{
|
|
free( p );
|
|
}
|