ListEqual

int ListEqual (listType list1, listType list2);

Purpose

This function examines two lists and returns whether or not they are identical.

Parameters

Input
Name Type Description
list1 ListType This list will be compared with list2 to see if they are identical.
list2 ListType This list will be compared with list1 to see if they are identical.

Return Value

Name Type Description
result integer Returns a non–zero value if the lists are identical.

Returns zero (0) if the lists are not identical.