Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 249 Bytes

7zMethodID.c

File metadata and controls

14 lines (12 loc) · 249 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 7zMethodID.c */
#include "7zMethodID.h"
int AreMethodsEqual(CMethodID *a1, CMethodID *a2)
{
int i;
if (a1->IDSize != a2->IDSize)
return 0;
for (i = 0; i < a1->IDSize; i++)
if (a1->ID[i] != a2->ID[i])
return 0;
return 1;
}