memcmp


Description:

public static int memcmp (uint8[] mem1, uint8[] mem2)

Compare two blocks of memory.

The return value can be used to sort the blocks of memory.

Parameters:

mem1

First block of memory

mem2

Second block of memory

size1

Length of first block

size2

Length of second block

Returns:

Zero if the blocks are identical, negative if first less than secend, possitive otherwise.