2008-04-01 18:52:26 +02:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* memory.h: A header for the memory functions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
|
|
* USA
|
|
|
|
*
|
2008-12-03 00:49:39 +01:00
|
|
|
* $Id: rb_memory.h 26092 2008-09-19 15:13:52Z androsyn $
|
2008-04-01 18:52:26 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RB_LIB_H
|
|
|
|
#error "Do not use rb_memory.h directly"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _RB_MEMORY_H
|
|
|
|
#define _RB_MEMORY_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
void rb_outofmemory(void);
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
rb_malloc(size_t size)
|
|
|
|
{
|
|
|
|
void *ret = calloc(1, size);
|
2008-06-25 07:28:30 +02:00
|
|
|
if(rb_unlikely(ret == NULL))
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_outofmemory();
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
rb_realloc(void *x, size_t y)
|
|
|
|
{
|
|
|
|
void *ret = realloc(x, y);
|
|
|
|
|
2008-06-25 07:28:30 +02:00
|
|
|
if(rb_unlikely(ret == NULL))
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_outofmemory();
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline char *
|
|
|
|
rb_strndup(const char *x, size_t y)
|
|
|
|
{
|
|
|
|
char *ret = malloc(y);
|
2008-06-25 07:28:30 +02:00
|
|
|
if(rb_unlikely(ret == NULL))
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_outofmemory();
|
|
|
|
rb_strlcpy(ret, x, y);
|
2008-12-03 00:49:39 +01:00
|
|
|
return (ret);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline char *
|
|
|
|
rb_strdup(const char *x)
|
|
|
|
{
|
|
|
|
char *ret = malloc(strlen(x) + 1);
|
2008-06-25 07:28:30 +02:00
|
|
|
if(rb_unlikely(ret == NULL))
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_outofmemory();
|
|
|
|
strcpy(ret, x);
|
2008-12-03 00:49:39 +01:00
|
|
|
return (ret);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
rb_free(void *ptr)
|
|
|
|
{
|
2008-12-03 00:49:39 +01:00
|
|
|
if(rb_likely(ptr != NULL))
|
|
|
|
free(ptr);
|
2008-04-01 18:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _I_MEMORY_H */
|