Searched defs:pcszThat (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/cpp/
H A Dministring.h564 * @param pcszThat The string to compare with.
569 int compare(const char *pcszThat, CaseSensitivity cs = CaseSensitive) const argument
574 return pcszThat == NULL || *pcszThat == '\0' ? 0 : -1;
577 return ::RTStrCmp(m_psz, pcszThat);
578 return ::RTStrICmp(m_psz, pcszThat);
584 * @param pcszThat The string to compare with.

Completed in 300 milliseconds