Skip to content

Instantly share code, notes, and snippets.

@he141142
he141142 / dictionary.c
Created May 26, 2020 12:14 — forked from choaimeloo/dictionary.c
cs50 pset5: Speller
// Implements a dictionary's functionality
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "dictionary.h"