aboutsummaryrefslogtreecommitdiff
path: root/dwm/chadwm/util.h
blob: 5c5da75d385fb3019c416b58a0990e48eb635069 (plain) (blame)
1
2
3
4
5
6
7
8
/* 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);
'>2024-03-03Enable null-ls prettier formatting and disable ufo.nvimLuca Matei Pintilie2-32/+35 2024-02-02Various updates to many dotfilesLuca Matei Pintilie17-922/+156 2023-12-05tmux: Add Tab bindingLuca Matei Pintilie1-0/+1 2023-11-25Remove sanitize in favor of https://hg.sr.ht/~aninternettroll/sanitizeLuca Matei Pintilie1-59/+0 2023-10-19Add sanitization and xdg-open helper scriptLuca Matei Pintilie4-2/+92 2023-10-16aerc: Color scheme updatesLuca Matei Pintilie2-2/+27 2023-10-01Neovim: Tweaks to indentation settingsLuca Matei Pintilie1-8/+11 2023-09-28Update weechat configLuca Matei Pintilie3-95/+4 2023-09-28Support XDG_CONFIG_HOMELuca Matei Pintilie5-13/+26 2023-09-28Upgrade to ibl v3 and minor lsp adjustmentLuca Matei Pintilie2-21/+28