s t r i c m p Abstraction of incompatible routine names for case insensitive comparison.
| 75 | // Abstraction of incompatible routine names |
| 76 | // for case insensitive comparison. |
| 77 | inline int stricmp(const char* a, const char* b) |
| 78 | { |
| 79 | #if defined(HAVE_STRCASECMP) |
| 80 | return ::strcasecmp(a, b); |
| 81 | #elif defined(HAVE_STRICMP) |
| 82 | return ::stricmp(a, b); |
| 83 | #else |
| 84 | #error dont know how to compare strings case insensitive on this system |
| 85 | #endif |
| 86 | } |
| 87 | |
| 88 | |
| 89 | // ******************** |
no outgoing calls
no test coverage detected