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: list = axl_list_new (axl_list_equal_int, NULL); The list created with this function will order data from litter to greater values.
|