int axl_list_equal_int ( axlPointer  a,
axlPointer  b 
)

Equal function that is preprated to receive to integers and return if they are equal.

It is assumed that integers are stored in the list using the following:

 axl_list_add (list, INT_TO_PTR (integer));

You can use this function to create an axlList that stores integer values as follows:

The list created with this function will order data from litter to greater values.

Parameters:
a A reference to the first integer.
b A reference to the second integer.
Returns:
0 if values received are equal, and 1 if b is greater than b. Otherwise -1 is returned.