dwm/util.h

20 lines
668 B
C
Raw Normal View History

2006-07-10 18:35:39 +02:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
2006-07-10 22:16:48 +02:00
#include <X11/Xlib.h>
2006-07-10 18:35:39 +02:00
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)
2006-07-10 22:16:48 +02:00
extern void failed_assert(char *a, char *file, int line);
2006-07-11 11:10:05 +02:00
void pipe_spawn(char *buf, unsigned int len, Display *dpy, const char *cmd);
extern void spawn(Display *dpy, const char *cmd);
2006-07-10 22:16:48 +02:00
extern void swap(void **p1, void **p2);