You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
196 B
C
8 lines
196 B
C
22 years ago
|
#include "byte.h"
|
||
|
#include "array.h"
|
||
|
|
||
|
int array_equal(const array* const x,const array* const y) {
|
||
|
if (x->initialized!=y->initialized) return 0;
|
||
|
return byte_equal(x->p,x->initialized,y->p);
|
||
|
}
|