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

12 lines
154 B
C++

#pragma once
#include <map>
#include <string>
namespace word_count {
typedef std::map<std::string, size_t> Words;
Words words(const std::string&);
}