| 112 | } |
| 113 | |
| 114 | int cdom::strcasecmp(const char* str1, const char* str2) { |
| 115 | #ifdef _MSC_VER |
| 116 | return _stricmp(str1, str2); |
| 117 | #else |
| 118 | return ::strcasecmp(str1, str2); |
| 119 | #endif |
| 120 | } |
| 121 | |
| 122 | string cdom::tolower(const string& s) { |
| 123 | string result; |
nothing calls this directly
no test coverage detected