IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2005, 1:40:46 PM (21 years ago)
Author:
desonia
Message:

added comments on the end of #endif and #else

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psList.h

    r3409 r4162  
    1 #if !defined(PS_LIST_H)
    2 #define PS_LIST_H
    3 
    41/** @file psList.h
    52 *  @brief Support for doubly linked lists
     
    107 *  @ingroup LinkedList
    118 *
    12  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-03-11 23:17:46 $
     9 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-06-08 23:40:45 $
    1411 *
    1512 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1613 */
     14
     15#ifndef PS_LIST_H
     16#define PS_LIST_H
    1717
    1818#include <pthread.h>                   // we need a mutex to make this stuff thread safe.
     
    210210/** Sort a list via a comparison function.
    211211 *
    212  *  The comparison function must return an integer less than, equal to, or 
    213  *  greater than zero if the first argument is considered to be respectively 
    214  *  less than, equal to, or greater than the second. 
    215  *
    216  *  If two members compare as equal, their order in the sorted array is 
     212 *  The comparison function must return an integer less than, equal to, or
     213 *  greater than zero if the first argument is considered to be respectively
     214 *  less than, equal to, or greater than the second.
     215 *
     216 *  If two members compare as equal, their order in the sorted array is
    217217 *  undefined.
    218218 *
     
    226226/// @} End of DataGroup Functions
    227227
    228 #endif
     228#endif // #ifndef PS_LIST_H
     229
Note: See TracChangeset for help on using the changeset viewer.