util.h: new header file defining commonly used macros

This commit is contained in:
Daniel Eklöf 2020-05-01 11:46:24 +02:00
parent fc2e385d87
commit 69c3e74498
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
14 changed files with 18 additions and 39 deletions

3
csi.c
View file

@ -16,8 +16,7 @@
#include "vt.h"
#include "selection.h"
#include "sixel.h"
#define min(x, y) ((x) < (y) ? (x) : (y))
#include "util.h"
#define UNHANDLED() LOG_DBG("unhandled: %s", csi_as_string(term, final, -1))
#define UNHANDLED_SGR(idx) LOG_DBG("unhandled: %s", csi_as_string(term, 'm', idx))