From e98943f9eb5cea2921969501e52e8c319323ed4c Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Fri, 12 Jul 2024 13:33:28 +0200 Subject: Start working on special sections --- src/util.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index b9c84f2..78d530e 100644 --- a/src/util.h +++ b/src/util.h @@ -6,6 +6,15 @@ #include #include +typedef struct { + char *key; + char *value; +} pair_t; + +void pair_copy(pair_t *copy, const pair_t *pair); + +void pair_free(pair_t *pair); + // Color representation normalized to [0, 1] // typedef struct { -- cgit v1.2.3