Important: The information in this document is obsolete and should not be used for new development.
OTStrEqual
Determines whether two C strings are the same.C INTERFACE
Boolean OTStrEqual (const char* str1, const char* str2)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
str1- A zero-terminated string that you want to compare with the string indicated by the
 str2parameter.str2- A zero-terminated string that you want to compare with the string indicated by the
 str1parameter.- function result
 - The function returns a value of
 truewhen the two strings are exactly the same.