Skip to content

Instantly share code, notes, and snippets.

@kcherise
kcherise / dict.c
Created October 30, 2023 01:59 — forked from kylef/dict.c
A key/value dictionary system in C
/* A key/value dict system in C */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TEST TRUE /* Comment this line out to compile without a main function (used when including into another application). */
typedef struct dict_t_struct {
char *key;
void *value;