Function
GcrComparablememcmp
Declaration [src]
gint
gcr_comparable_memcmp (
  gconstpointer mem1,
  gsize size1,
  gconstpointer mem2,
  gsize size2
)
Description [src]
Compare two blocks of memory. The return value can be used to sort the blocks of memory.
This function is not directly available to language bindings.
Parameters
- mem1
- 
            Type: An array of guint8First block of memory. The length of the array is specified in the size1argument.
- size1
- 
            Type: gsizeLength of first block. 
- mem2
- 
            Type: An array of guint8Second block of memory. The length of the array is specified in the size2argument.
- size2
- 
            Type: gsizeLength of second block.