util.h
author Anselm R. Garbe <garbeam@wmii.de>
Mon, 10 Jul 2006 19:46:24 +0200
changeset 3 e969f3575b7a
parent 2 a79188fe4a40
child 5 e5018cae273f
permissions -rw-r--r--
several new changes, made gridmenu working

/*
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */

extern void error(char *errstr, ...);
extern void *emallocz(unsigned int size);
extern void *emalloc(unsigned int size);
extern void *erealloc(void *ptr, unsigned int size);
extern char *estrdup(const char *str);
#define eassert(a) do { \
		if(!(a)) \
			failed_assert(#a, __FILE__, __LINE__); \
	} while (0)
void failed_assert(char *a, char *file, int line);
void swap(void **p1, void **p2);