diff options
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 { |
