| 209 | |
| 210 | extern "C" |
| 211 | bool IrGenericIsNullString(const char* s, int slen, const char* n, int nlen) { |
| 212 | return s == NULL || (slen == nlen && StringCompare(s, slen, n, nlen, slen) == 0); |
| 213 | } |
| 214 | #endif |
nothing calls this directly
no test coverage detected