Check if one string starts with another
| 551 | |
| 552 | /// Check if one string starts with another |
| 553 | bool dStrStartsWith(const char* str1, const char* str2) |
| 554 | { |
| 555 | return !dStrnicmp(str1, str2, dStrlen(str2)); |
| 556 | } |
| 557 | |
| 558 | /// Check if one string ends with another |
| 559 | bool dStrEndsWith(const char* str1, const char* str2) |
no test coverage detected