#include "cifparse.h"
int ndb_cif_compare(CifHandle *cf1,
char *name1,
CifHandle *cf2,
char *name2,
FILE *msg);
ndb_cif_compare compares two CifHandle structures specified by cif1 and cif2, with the names name1 and name2 recpectively. Result of this comparison is reported into the file pointed to by the input file descriptor msg.
cf1 | pointer to the first CifHandle data structure |
name1 | name of first cif structure (file) |
cf2 | pointer to the second CifHandle data structure |
name2 | to the name of second cif structure (file) |
fp | pointer to the file descriptor where the results would be reported |
Returns the 1 if the structures are the same 0 if not.
None |