chiark / gitweb /
update CHANGES.html
[disorder] / server / api.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 2004, 2007, 2008 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 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
21 #include "disorder-server.h"
22
23 /* shared implementation of vararg functions */
24 #include "log-impl.h"
25 #include "mem-impl.h"
26
27 void *disorder_malloc(size_t n) {
28   return xmalloc(n);
29 }
30
31 void *disorder_realloc(void *p, size_t n) {
32   return xrealloc(p, n);
33 }
34
35 void *disorder_malloc_noptr(size_t n) {
36   return xmalloc_noptr(n);
37 }
38
39 void *disorder_realloc_noptr(void *p, size_t n) {
40   return xrealloc_noptr(p, n);
41 }
42
43 char *disorder_strdup(const char *p) {
44   return xstrdup(p);
45 }
46
47 char *disorder_strndup(const char *p, size_t n) {
48   return xstrndup(p, n);
49 }
50
51 int 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 /*
62 Local Variables:
63 c-basic-offset:2
64 comment-column:40
65 End:
66 */