| 121 | } |
| 122 | |
| 123 | void DefineWordListSets(const char * const wordListDescriptions[]) { |
| 124 | if (wordListDescriptions) { |
| 125 | for (size_t wl = 0; wordListDescriptions[wl]; wl++) { |
| 126 | if (!wordLists.empty()) |
| 127 | wordLists += "\n"; |
| 128 | wordLists += wordListDescriptions[wl]; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | const char *DescribeWordListSets() { |
| 134 | return wordLists.c_str(); |
nothing calls this directly
no outgoing calls
no test coverage detected