Coloring strings

This commit is contained in:
Krzosa Karol
2024-07-04 07:35:29 +02:00
parent e7f53d2c07
commit 21df381d12
2 changed files with 24 additions and 7 deletions

View File

@@ -171,6 +171,11 @@ bool AreEqual(Cursor a, Cursor b) {
return result;
}
bool InRange(int64_t a, Range b) {
bool result = a >= b.min && a < b.max;
return result;
}
void MergeSort(int64_t Count, Edit *First, Edit *Temp) {
// SortKey = range.min
if (Count == 1) {