ObjFW  Diff

Differences From Artifact [d7680287a6]:

To Artifact [4bcce6446e]:


1369
1370
1371
1372
1373
1374
1375
1376
1377

1378
1379

1380
1381
1382
1383
1384
1385
1386
1369
1370
1371
1372
1373
1374
1375


1376


1377
1378
1379
1380
1381
1382
1383
1384







-
-
+
-
-
+







			of_unichar_t tc =
			    of_unicode_casefolding_table[oc >> 8][oc & 0xFF];

			if (tc)
				oc = tc;
		}
#else
		if (c <= 0x7F)
			c = toupper(c);
		c = of_ascii_toupper(c);
		if (oc <= 0x7F)
			oc = toupper(oc);
		oc = of_ascii_toupper(oc);
#endif

		if (c > oc) {
			objc_autoreleasePoolPop(pool);
			return OF_ORDERED_DESCENDING;
		}
		if (c < oc) {