From 70aa166624a5377c8dd60854cea967325af8c21b Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 30 May 2025 08:15:29 +0100 Subject: Clean up --- lib/sv.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/sv.h') diff --git a/lib/sv.h b/lib/sv.h index 3293b1c..4e600c2 100644 --- a/lib/sv.h +++ b/lib/sv.h @@ -27,6 +27,7 @@ typedef struct SV #define SV(DATA, SIZE) ((const sv_t){.size = (SIZE), .data = (DATA)}) #define SV_FMT(SV) (int)(SV).size, (SV).data #define PR_SV "%.*s" +#define PR_DEBUG_SV "%d@%p" sv_t sv_make(arena_t *allocator, const char *data, u64 size); sv_t sv_copy(arena_t *allocator, sv_t sv); -- cgit v1.2.3-13-gbd6f