]> jfr.im git - irc/rqf/shadowircd.git/blame - libratbox/include/rb_memory.h
Copied libratbox and related stuff from shadowircd upstream.
[irc/rqf/shadowircd.git] / libratbox / include / rb_memory.h
CommitLineData
b57f37fb
WP
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * memory.h: A header for the memory functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
22 * USA
23 *
94b4fbf9 24 * $Id: rb_memory.h 26092 2008-09-19 15:13:52Z androsyn $
b57f37fb
WP
25 */
26
27#ifndef RB_LIB_H
28#error "Do not use rb_memory.h directly"
29#endif
30
31#ifndef _RB_MEMORY_H
32#define _RB_MEMORY_H
33
34#include <stdlib.h>
35
36
37void rb_outofmemory(void);
38
39static inline void *
40rb_malloc(size_t size)
41{
42 void *ret = calloc(1, size);
033be687 43 if(rb_unlikely(ret == NULL))
b57f37fb
WP
44 rb_outofmemory();
45 return (ret);
46}
47
48static inline void *
49rb_realloc(void *x, size_t y)
50{
51 void *ret = realloc(x, y);
52
033be687 53 if(rb_unlikely(ret == NULL))
b57f37fb
WP
54 rb_outofmemory();
55 return (ret);
56}
57
58static inline char *
59rb_strndup(const char *x, size_t y)
60{
61 char *ret = malloc(y);
033be687 62 if(rb_unlikely(ret == NULL))
b57f37fb
WP
63 rb_outofmemory();
64 rb_strlcpy(ret, x, y);
94b4fbf9 65 return (ret);
b57f37fb
WP
66}
67
68static inline char *
69rb_strdup(const char *x)
70{
71 char *ret = malloc(strlen(x) + 1);
033be687 72 if(rb_unlikely(ret == NULL))
b57f37fb
WP
73 rb_outofmemory();
74 strcpy(ret, x);
94b4fbf9 75 return (ret);
b57f37fb
WP
76}
77
78
79static inline void
80rb_free(void *ptr)
81{
94b4fbf9
VY
82 if(rb_likely(ptr != NULL))
83 free(ptr);
b57f37fb
WP
84}
85
86#endif /* _I_MEMORY_H */