* @brief Returns true if strings are equal (case sensitive). *************************************************************/
| 24 | * @brief Returns true if strings are equal (case sensitive). |
| 25 | *************************************************************/ |
| 26 | inline bool IsStringEqual(char const* pStr1, char const* pStr2) |
| 27 | { |
| 28 | if (pStr1 == NULL || pStr2 == NULL) |
| 29 | { |
| 30 | return false ; |
| 31 | } |
| 32 | |
| 33 | return strcmp(pStr1, pStr2) == 0 ; |
| 34 | } |
| 35 | |
| 36 | /************************************************************* |
| 37 | * @brief Returns true if strings are equal (case insensitive). |
no outgoing calls
no test coverage detected