2006-07-29 Marcus Brinkmann <marcus@g10code.de>
[gnupg.git] / jnlib / xmalloc.h
blob8bfa7df79ffa53efab8f0b3779840d6e1bd24b11
1 /* xmalloc.h
2 * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 * USA.
22 #ifndef LIBJNLIB_XMALLOC_H
23 #define LIBJNLIB_XMALLOC_H
25 void *xmalloc( size_t n );
26 void *xrealloc( void *a, size_t n );
27 void *xcalloc( size_t n, size_t m );
28 char *xstrdup( const char *string );
29 char *xstrcat2( const char *a, const char *b );
32 #endif /*LIBJNLIB_XMALLOC_H*/