chiark / gitweb /
mem-impl.h is no longer shared code, so remove
[disorder] / server / api.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
9d72cdff 3 * Copyright (C) 2004, 2007, 2008, 2009 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
9 *
e7eb3a27
RK
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 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
132a5a4a
RK
18/** @file server/api.c
19 * @brief Generic API
20 *
21 * These functions are made available to all kinds of plugins.
22 */
05b75f8d 23#include "disorder-server.h"
460b9539 24
25/* shared implementation of vararg functions */
26#include "log-impl.h"
460b9539 27
28void *disorder_malloc(size_t n) {
29 return xmalloc(n);
30}
31
32void *disorder_realloc(void *p, size_t n) {
33 return xrealloc(p, n);
34}
35
36void *disorder_malloc_noptr(size_t n) {
37 return xmalloc_noptr(n);
38}
39
40void *disorder_realloc_noptr(void *p, size_t n) {
41 return xrealloc_noptr(p, n);
42}
43
44char *disorder_strdup(const char *p) {
45 return xstrdup(p);
46}
47
48char *disorder_strndup(const char *p, size_t n) {
49 return xstrndup(p, n);
50}
51
52int 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
9d72cdff
RK
62int 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
460b9539 72/*
73Local Variables:
74c-basic-offset:2
75comment-column:40
76End:
77*/