chiark / gitweb /
Merge from disorder.4.0
[disorder] / server / api.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004, 2007, 2008 Richard Kettlewell
460b9539 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 2 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, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * 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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
05b75f8d 21#include "disorder-server.h"
460b9539 22
23/* shared implementation of vararg functions */
24#include "log-impl.h"
25#include "mem-impl.h"
26
27void *disorder_malloc(size_t n) {
28 return xmalloc(n);
29}
30
31void *disorder_realloc(void *p, size_t n) {
32 return xrealloc(p, n);
33}
34
35void *disorder_malloc_noptr(size_t n) {
36 return xmalloc_noptr(n);
37}
38
39void *disorder_realloc_noptr(void *p, size_t n) {
40 return xrealloc_noptr(p, n);
41}
42
43char *disorder_strdup(const char *p) {
44 return xstrdup(p);
45}
46
47char *disorder_strndup(const char *p, size_t n) {
48 return xstrndup(p, n);
49}
50
51int disorder_snprintf(char buffer[], size_t bufsize, const char *fmt, ...) {
52 int n;
53 va_list ap;
54
55 va_start(ap, fmt);
56 n = byte_vsnprintf(buffer, bufsize, fmt, ap);
57 va_end(ap);
58 return n;
59}
60
61/*
62Local Variables:
63c-basic-offset:2
64comment-column:40
65End:
66*/