2004-10-26 14:38:43 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2004 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
|
* and its documentation for any purpose is hereby granted without
|
|
|
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
|
|
|
* and that both that copyright notice and this permission notice
|
|
|
|
|
* appear in supporting documentation, and that the name of
|
|
|
|
|
* Red Hat, Inc. not be used in advertising or publicity pertaining to
|
|
|
|
|
* distribution of the software without specific, written prior
|
|
|
|
|
* permission. Red Hat, Inc. makes no representations about the
|
|
|
|
|
* suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
|
|
|
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Carl D. Worth <cworth@cworth.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _XMALLOC_H_
|
|
|
|
|
#define _XMALLOC_H_
|
|
|
|
|
|
2007-04-20 00:34:51 -04:00
|
|
|
#include "cairo-boilerplate.h"
|
2005-04-27 13:33:25 +00:00
|
|
|
|
2007-04-20 00:34:51 -04:00
|
|
|
#define xmalloc cairo_boilerplate_xmalloc
|
2004-10-26 14:38:43 +00:00
|
|
|
void *
|
|
|
|
|
xmalloc (size_t size);
|
|
|
|
|
|
2007-04-20 00:34:51 -04:00
|
|
|
#define xcalloc cairo_boilerplate_xcalloc
|
2004-10-26 14:38:43 +00:00
|
|
|
void *
|
2010-06-24 14:59:18 +03:00
|
|
|
xcalloc (size_t nmemb,
|
|
|
|
|
size_t size);
|
2004-10-26 14:38:43 +00:00
|
|
|
|
2007-05-02 16:22:13 -04:00
|
|
|
#define xrealloc cairo_boilerplate_xrealloc
|
2006-11-07 12:50:52 -08:00
|
|
|
void *
|
2010-06-24 14:59:18 +03:00
|
|
|
xrealloc (void *buf,
|
|
|
|
|
size_t size);
|
2006-11-07 12:50:52 -08:00
|
|
|
|
2007-04-20 00:34:51 -04:00
|
|
|
#define xasprintf cairo_boilerplate_xasprintf
|
|
|
|
|
void
|
2010-06-24 14:59:18 +03:00
|
|
|
xasprintf (char **strp,
|
|
|
|
|
const char *fmt,
|
|
|
|
|
...) CAIRO_BOILERPLATE_PRINTF_FORMAT(2, 3);
|
2007-04-20 00:34:51 -04:00
|
|
|
|
2008-08-20 19:44:30 +01:00
|
|
|
#define xunlink cairo_boilerplate_xunlink
|
|
|
|
|
void
|
|
|
|
|
xunlink (const char *path);
|
|
|
|
|
|
2009-06-02 13:08:25 +01:00
|
|
|
#define xstrdup cairo_boilerplate_xstrdup
|
|
|
|
|
char *
|
|
|
|
|
xstrdup (const char *str);
|
|
|
|
|
|
2004-10-26 14:38:43 +00:00
|
|
|
#endif
|