2016-07-17 06:22:05 -07:00
|
|
|
#ifndef HELPERS_RANDOM_HELPERS_H_
|
|
|
|
|
#define HELPERS_RANDOM_HELPERS_H_
|
|
|
|
|
|
|
|
|
|
#include <string>
|
2017-06-21 17:26:52 -07:00
|
|
|
#include <vector>
|
2016-07-17 06:22:05 -07:00
|
|
|
|
|
|
|
|
std::string random_words(size_t count);
|
2017-06-21 17:26:52 -07:00
|
|
|
std::string select_random(const std::vector<std::string> &);
|
2016-07-17 06:22:05 -07:00
|
|
|
|
|
|
|
|
#endif // HELPERS_RANDOM_HELPERS_H_
|