chiark / gitweb /
mem-impl.h is no longer shared code, so remove
[disorder] / server / api.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2007, 2008, 2009 Richard Kettlewell
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /** @file server/api.c
19  * @brief Generic API
20  *
21  * These functions are made available to all kinds of plugins.
22  */
23 #include "disorder-server.h"
24
25 /* shared implementation of vararg functions */
26 #include "log-impl.h"
27
28 void *disorder_malloc(size_t n) {
29   return xmalloc(n);
30 }
31
32 void *disorder_realloc(void *p, size_t n) {
33   return xrealloc(p, n);
34 }
35
36 void *disorder_malloc_noptr(size_t n) {
37   return xmalloc_noptr(n);
38 }
39
40 void *disorder_realloc_noptr(void *p, size_t n) {
41   return xrealloc_noptr(p, n);
42 }
43
44 char *disorder_strdup(const char *p) {
45   return xstrdup(p);
46 }
47
48 char *disorder_strndup(const char *p, size_t n) {
49   return xstrndup(p, n);
50 }
51
52 int disorder_snprintf(char buffer[], size_t bufsize, const char *fmt, ...) {
53   int n;
54   va_list ap;
55
56   va_start(ap, fmt);
57   n = byte_vsnprintf(buffer, bufsize, fmt, ap);
58   va_end(ap);
59   return n;
60 }
61
62 int disorder_asprintf(char **rp, const char *fmt, ...) {
63   va_list ap;
64   int n;
65
66   va_start(ap, fmt);
67   n = byte_vasprintf(rp, fmt, ap);
68   va_end(ap);
69   return n;
70 }
71
72 /*
73 Local Variables:
74 c-basic-offset:2
75 comment-column:40
76 End:
77 */