@@ -206,10 +206,18 @@ * \param str A string to compare with * \return An of_comparison_result_t */ - (of_comparison_result_t)compare: (OFString*)str; +/** + * Compares the OFString to another OFString without caring about the case. + * + * \param str A string to compare with + * \return An of_comparison_result_t + */ +- (of_comparison_result_t)caseInsensitiveCompare: (OFString*)str; + /** * \param index The index of the Unicode character to return * \return The Unicode character at the specified index */ - (of_unichar_t)characterAtIndex: (size_t)index;