searches abbreviations, returns expansion if so, returns original if not
| 361 | |
| 362 | // searches abbreviations, returns expansion if so, returns original if not |
| 363 | static string searchAbbreviations(string in) { |
| 364 | if(abbreviations.count(in) > 0) |
| 365 | return abbreviations[in]; |
| 366 | return in; |
| 367 | }; |
| 368 | |
| 369 | static void seedwatch_setTarget(color_ostream &out, string name, int32_t num) { |
| 370 | DEBUG(control,out).print("entering seedwatch_setTarget\n"); |
no test coverage detected