array_equal(3diet)
NAME
array_equal - compare two arrays for equality
SYNTAX
#include <array.h>
- int array_equal(array* x,array* y);
- array x;
array y;
array_equal(&x,&y);
DESCRIPTION
array_equal returns nonzero if x and y have the same contents: i.e.,
o x and y are both unallocated; or
- o x is unallocated, y is allocated, and y has no initialized
- bytes; or
- o x is allocated, y is unallocated, and x has no initialized
- bytes; or
- o x and y are both allocated and have the same sequence of ini
- tialized bytes.
- Otherwise it returns 0.