Changeset 1127 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Jun 29, 2004, 1:19:11 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r1111 r1127 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-06-2 8 20:36:37$12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-29 23:19:11 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 17 17 18 18 #include <pthread.h> // we need a mutex to make this stuff thread safe. 19 #include <stdbool.h> // we use the bool type. 19 20 20 21 #include "psCompare.h" … … 98 99 /** Remove an item from a list. If which parameter is PS_LIST_UNKNOWN, 99 100 * 100 * @return void* The data item that was removed. If NULL, no item was 101 * removed. 101 * @return bool TRUE if element is successfully removed, otherwise FALSE. 102 102 */ 103 void*psListRemove(103 bool psListRemove( 104 104 psList* restrict list, 105 105 ///< list to remove element from … … 182 182 ); 183 183 184 psList* psListSort(psList* list, psCompare Fcn compare);184 psList* psListSort(psList* list, psComparePtrFcn compare); 185 185 186 186 /// @} End of DataGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
