Пример #1
0
 static
 PRInt32 compare( const PRUnichar* a, const PRUnichar* b, PRUint32 max, bool ic )
   {
     NS_ASSERTION(!ic, "no case-insensitive compare here");
     return Compare2To2(a, b, max);
   }
Пример #2
0
 static
 int32_t compare( const char16_t* a, const char16_t* b, uint32_t max, bool ic )
 {
     NS_ASSERTION(!ic, "no case-insensitive compare here");
     return Compare2To2(a, b, max);
 }