added several other stuff

This commit is contained in:
Anselm R. Garbe
2006-07-10 22:16:48 +02:00
parent 2de59d0f09
commit 439e15d09f
12 changed files with 476 additions and 39 deletions

6
util.h
View File

@ -2,6 +2,7 @@
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include <X11/Xlib.h>
extern void error(char *errstr, ...);
extern void *emallocz(unsigned int size);
@ -12,5 +13,6 @@ extern char *estrdup(const char *str);
if(!(a)) \
failed_assert(#a, __FILE__, __LINE__); \
} while (0)
void failed_assert(char *a, char *file, int line);
void swap(void **p1, void **p2);
extern void failed_assert(char *a, char *file, int line);
extern void swap(void **p1, void **p2);
extern void spawn(Display *dpy, const char *shell, const char *cmd);