-rw-r--r-- | rsync/util.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/rsync/util.h b/rsync/util.h new file mode 100644 index 0000000..2793256 --- a/dev/null +++ b/rsync/util.h | |||
@@ -0,0 +1,44 @@ | |||
1 | /*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- | ||
2 | * | ||
3 | * librsync -- library for network deltas | ||
4 | * $Id$ | ||
5 | * | ||
6 | * Copyright (C) 1999, 2000, 2001 by Martin Pool <mbp@samba.org> | ||
7 | * Copyright (C) 1999 by Andrew Tridgell <tridge@samba.org> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU Lesser General Public License | ||
11 | * as published by the Free Software Foundation; either version 2.1 of | ||
12 | * the License, or (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * Lesser General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU Lesser General Public | ||
20 | * License along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
22 | */ | ||
23 | |||
24 | |||
25 | void * rs_alloc(size_t size, char const *name); | ||
26 | void *rs_alloc_struct0(size_t size, char const *name); | ||
27 | |||
28 | void rs_bzero(void *buf, size_t size); | ||
29 | |||
30 | |||
31 | /* | ||
32 | * Allocate and zero-fill an instance of TYPE. | ||
33 | */ | ||
34 | #define rs_alloc_struct(type) \ | ||
35 | ((type *) rs_alloc_struct0(sizeof(type), #type)) | ||
36 | |||
37 | |||
38 | #ifdef __GNUC__ | ||
39 | # define UNUSED(x) x __attribute__((unused)) | ||
40 | #elif __LCLINT__ | ||
41 | # define UNUSED(x) /*@unused@*/ x | ||
42 | #else /* !__GNUC__ && !__LCLINT__ */ | ||
43 | # define UNUSED(x) x | ||
44 | #endif /* !__GNUC__ && !__LCLINT__ */ | ||