Skip to content

Instantly share code, notes, and snippets.

@rosshays
rosshays / dictionary.c
Created August 2, 2012 04:22
C Dictionary (map) Implementation
#include "dictionary.h"
#include <stdlib.h>
#include <stdbool.h>
////////////////////////////////////////////////////////////////////////////////
// static function forward declarations
// dictionary node static
static DictionaryNode *DictionaryNodeAlloc(void);