int ListEqual (listType list1, listType list2);
This function examines two lists and returns whether or not they are identical.
| 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. |
| Name | Type | Description |
| result | integer | Returns a non–zero value if the lists are identical. Returns zero (0) if the lists are not identical. |