Add compare command to tool.

This commit is contained in:
2025-08-06 02:14:49 +01:00
parent b06078b041
commit 9a7eeb4a75
8 changed files with 4790 additions and 4 deletions

View File

@@ -99,3 +99,13 @@ void usage_verify_sectors()
printf("Arguments:\n");
printf(" <filename> Path to image file.\n");
}
void usage_compare()
{
printf("\nUsage:\n");
printf(" aaruformattool compare <filename1> <filename2>\n\n");
printf("Compares two AaruFormat images.\n");
printf("Arguments:\n");
printf(" <filename1> Path to first image file.\n");
printf(" <filename2> Path to second image file.\n");
}