From 5d0383d0f874348cc3e0f363bd5d42aa273a4551 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sun, 24 Apr 2022 22:27:42 +0530 Subject: Patched Dmenu --- bkp/util.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 bkp/util.h (limited to 'bkp/util.h') diff --git a/bkp/util.h b/bkp/util.h deleted file mode 100644 index b34e3fd..0000000 --- a/bkp/util.h +++ /dev/null @@ -1,20 +0,0 @@ -/* -// . . . -// | | | . -// ,-. ,-. |-. ,-. . ,-. | ,_, ,-. ,-. |-. ,-,-. . |- ,_, -// | | ,-| | | | | |-' | / `-. | | | | | | | | / -// `-| `-^ ^-' ' ' `-' `' '"' `-' `-' ' ' ' ' ' ' `' '"' -// ,| -// `' -// GITHUB:https://github.com/gabrielzschmitz -// INSTAGRAM:https://www.instagram.com/gabrielz.schmitz/ -// DOTFILES:https://github.com/gabrielzschmitz/dotfiles/ -*/ -/* See LICENSE file for copyright and license details. */ - -#define MAX(A, B) ((A) > (B) ? (A) : (B)) -#define MIN(A, B) ((A) < (B) ? (A) : (B)) -#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B)) - -void die(const char *fmt, ...); -void *ecalloc(size_t nmemb, size_t size); -- cgit v1.2.3-59-g8ed1b