| 1094 | } |
| 1095 | |
| 1096 | bool string::end_with(const char* s, bool case_sensitive /* = true */) const |
| 1097 | { |
| 1098 | return rncompare(s, strlen(s), case_sensitive) == 0; |
| 1099 | } |
| 1100 | |
| 1101 | bool string::end_with(const char* s, size_t len, bool case_sensitive /* = true */) const |
| 1102 | { |