Skip to content

Instantly share code, notes, and snippets.

View mitul1208's full-sized avatar

Mitul Patel mitul1208

View GitHub Profile
@mitul1208
mitul1208 / frontendDevlopmentBookmarks.md
Created January 3, 2017 09:42 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@mitul1208
mitul1208 / hash.c
Created July 12, 2016 15:37 — forked from tonious/hash.c
A quick hashtable implementation in c.
#define _XOPEN_SOURCE 500 /* Enable certain library functions (strdup) on linux. See feature_test_macros(7) */
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>
struct entry_s {
char *key;
char *value;