diff options
| author | Federico Angelilli <code@fedang.net> | 2024-07-12 13:33:28 +0200 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-07-12 13:33:28 +0200 |
| commit | e98943f9eb5cea2921969501e52e8c319323ed4c (patch) | |
| tree | f7879c77e85d4cdea19c53bef2d1ae3dc192c20c /src/util.h | |
| parent | e45c7bc6b41fbcea84ca51d01b8661f93145ce7a (diff) | |
Start working on special sections
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -6,6 +6,15 @@ #include <stdbool.h> #include <stdio.h> +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 { |
