feat(diff): implemented the myers diff algorithm with longest common subsequence and printing the diff

This commit is contained in:
lisk77 2025-08-17 18:20:04 +02:00
parent f7043cc03a
commit 190aa7cc76
4 changed files with 167 additions and 7 deletions

View file

@ -1,5 +0,0 @@
#include "myers.h"
ActionList* myers_diff(char** file1, char** file2, uint64_t offset1, uint64_t offset2) {
return NULL;
}