| 88 | } |
| 89 | |
| 90 | string commaListFront(string cl) |
| 91 | { |
| 92 | size_t cn = cl.find_first_of(','); |
| 93 | if (cn == string::npos) { cn = cl.size(); } |
| 94 | return cl.substr(0,trimrightn(cl.c_str(),cn)); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | // Case insenstive string comparison |
no test coverage detected