15 lines
241 B
C++
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());
|
|
|
|
}
|