Changeset 1193 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Jul 7, 2004, 3:05:01 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r1127 r1193 10 10 * @ingroup LinkedList 11 11 * 12 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 6-29 23:19:11$12 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-08 01:05:00 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 81 81 * NULL, the return value will also be NULL. 82 82 */ 83 psList*psListAdd(83 bool psListAdd( 84 84 psList* restrict list, ///< list to add to (if NULL, nothing is done) 85 85 void* data, ///< data item to add. If NULL, list is not modified. 86 86 int where ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location. 87 );88 89 /** Appends an item to a psList.90 *91 * @return psList* The psList with added data item. If list parameter is92 * NULL, the return value will also be NULL.93 */94 psList* psListAppend(95 psList* restrict list, ///< list to append to (if NULL, nothing is done)96 void *data ///< data item to add. If NULL, list is not modified.97 87 ); 98 88
Note:
See TracChangeset
for help on using the changeset viewer.
