| 2271 | # ifdef __BORLANDC__ |
| 2272 | inline int IsATTY(int fd) { return isatty(fd); } |
| 2273 | inline int StrCaseCmp(const char* s1, const char* s2) { |
| 2274 | return stricmp(s1, s2); |
| 2275 | } |
| 2276 | inline char* StrDup(const char* src) { return strdup(src); } |
| 2277 | # else // !__BORLANDC__ |
| 2278 | # if GTEST_OS_WINDOWS_MOBILE |
no outgoing calls
no test coverage detected