exercism-solutions/cpp/word-count/word_count.h

15 lines
241 B
C++

#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <locale>
#include <map>
#include <string>
namespace word_count {
typedef std::map<std::string, int> Words;
Words words(const std::string&, const std::locale &loc = std::locale());
}