X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=util.h;h=76fc09f59b1089da9f3a851d1c9f2dbf0394f58f;hp=8ba444b0d845d6217d6da9b2009fe661c7458111;hb=da2bbd371c522d63d737d43a127601a3fdbcb9d8;hpb=39677ec76616fe4165ef92afb14db2bef2488e30 diff --git a/util.h b/util.h index 8ba444b..76fc09f 100644 --- a/util.h +++ b/util.h @@ -2,15 +2,21 @@ * (C)opyright MMVI Anselm R. Garbe * See LICENSE file for license details. */ +#include 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 { \ +#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); +extern void failed_assert(char *a, char *file, int line); +extern void pipe_spawn(char *buf, unsigned int len, Display *dpy, char *argv[]); +extern void spawn(Display *dpy, char *argv[]); +extern void swap(void **p1, void **p2); +extern unsigned int tokenize(char **result, unsigned int reslen, + char *str, char delim);