Removed tabs.
[usmb.git] / utils.h
blobd9a6dfc05c74a2f81b7ae2d4bdab7e762f9cfa0b
1 /* usmb - mount SMB shares via FUSE and Samba
2 * Copyright (C) 2006-2009 Geoff Johnstone
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef UTILS_H
18 #define UTILS_H
20 #ifdef DEBUG
21 #undef DEBUG
22 #define DEBUG(x) (x)
23 #define DEBUGON
24 #else
25 #define DEBUG(x) ((void)0)
26 #endif
28 char * concat_strings (int num, ...) MUSTCHECK;
29 char * xstrdup (const char *in) MUSTCHECK;
30 void xfree (const void *ptr);
31 void clear_and_free (char *ptr);
32 void free_errno (const void *ptr);
33 void xfree_errno (const void *ptr);
35 #endif