Skip to content

Instantly share code, notes, and snippets.

View coolnerdcool's full-sized avatar
🐉
Discipline.

Michel coolnerdcool

🐉
Discipline.
View GitHub Profile
@coolnerdcool
coolnerdcool / stndnrml.h
Created September 14, 2018 20:46
library for cs50
#define HASH_MAX 23
enum {NO_ERROR, ERROR};
typedef struct node {
char head[LENGTH + 1];
struct node *next;
} Node;