X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=util.h;h=033700cadd75205410e46a6f57aa9d33f0ab1511;hp=51b087193f12a22a52c8eba5338364dcbbb83b91;hb=271b0614b4ecf0670ca9f9f89edb983055920ece;hpb=26e134b8a7dae21a699822009674b3131de6e250 diff --git a/util.h b/util.h index 51b0871..033700c 100644 --- a/util.h +++ b/util.h @@ -1,20 +1,6 @@ -/* - * (C)opyright MMVI Anselm R. Garbe - * See LICENSE file for license details. - */ -#include +/* See LICENSE file for copyright and 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) -extern void failed_assert(char *a, char *file, int line); -void pipe_spawn(char *buf, unsigned int len, Display *dpy, const char *cmd); -extern void spawn(Display *dpy, const char *cmd); -extern void swap(void **p1, void **p2); -unsigned char *getselection(unsigned long offset, unsigned long *len, unsigned long *remain); +#define MAX(A, B) ((A) > (B) ? (A) : (B)) +#define MIN(A, B) ((A) < (B) ? (A) : (B)) + +void die(const char *errstr, ...);