Skip to content

Instantly share code, notes, and snippets.

@dmytro-i3
dmytro-i3 / dict.c
Created April 30, 2020 13:49 — 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;