// wordcount.cpp - parses the words out of a text (like strtok)
// (based on program in Eckels, Thinking in C++),
// lowercases them, and inserts
// them into a map to count them.
//
#pragma warning(disable:4786)
#include "require.h"
#include
#include
#include
#include
#include
#include
#include
#include