DisOrder 3.0
[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 <config.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <syslog.h>
28
29 #include "log.h"
30 #include "mem.h"
31 #include "disorder.h"
32 #include "printf.h"
33
34 /* shared implementation of vararg functions */
35 #include "log-impl.h"
36 #include "mem-impl.h"
37
38 void *disorder_malloc(size_t n) {
39 return xmalloc(n);
40 }
41
42 void *disorder_realloc(void *p, size_t n) {
43 return xrealloc(p, n);
44 }
45
46 void *disorder_malloc_noptr(size_t n) {
47 return xmalloc_noptr(n);
48 }
49
50 void *disorder_realloc_noptr(void *p, size_t n) {
51 return xrealloc_noptr(p, n);
52 }
53
54 char *disorder_strdup(const char *p) {
55 return xstrdup(p);
56 }
57
58 char *disorder_strndup(const char *p, size_t n) {
59 return xstrndup(p, n);
60 }
61
62 int disorder_snprintf(char buffer[], size_t bufsize, const char *fmt, ...) {
63 int n;
64 va_list ap;
65
66 va_start(ap, fmt);
67 n = byte_vsnprintf(buffer, bufsize, 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 */