| 194 | } |
| 195 | |
| 196 | inline static const char *getOrdinalText(int i) |
| 197 | { |
| 198 | if (i == 1) |
| 199 | return "st"; |
| 200 | if (i == 2) |
| 201 | return "nd"; |
| 202 | if (i == 3) |
| 203 | return "rd"; |
| 204 | return "th"; |
| 205 | } |
| 206 | |
| 207 | CPPCHECKLIB int caseInsensitiveStringCompare(const std::string& lhs, const std::string& rhs); |
| 208 |
no outgoing calls
no test coverage detected