| 2813 | # ifdef __BORLANDC__ |
| 2814 | inline int IsATTY(int fd) { return isatty(fd); } |
| 2815 | inline int StrCaseCmp(const char* s1, const char* s2) { |
| 2816 | return stricmp(s1, s2); |
| 2817 | } |
| 2818 | inline char* StrDup(const char* src) { return strdup(src); } |
| 2819 | # else // !__BORLANDC__ |
| 2820 | # if GTEST_OS_WINDOWS_MOBILE |
no outgoing calls
no test coverage detected