Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7zMethodID.c « 7z_C « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5047359f375e9d3bfca8288ab4c2d7c4a5b86305 (plain)
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;
}