Skip to content

Instantly share code, notes, and snippets.

View MonarchAB's full-sized avatar

Audun Burton MonarchAB

View GitHub Profile
@MonarchAB
MonarchAB / dictionary.c
Created October 1, 2020 23:17
Cs50 Speller
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
#include <strings.h>
#include "dictionary.h"