IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 12:28:16 PM (22 years ago)
Author:
Paul Price
Message:

Doxygen-ated the source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psSort.h

    r149 r153  
    66/* Sorting */
    77
    8 /* Sort an array */
    9 /* Inputs not restrict-ed to allow sort in place */
     8/** Sort an array. Inputs not restrict-ed to allow sort in place */
    109psFloatArray *
    11 psSort(psFloatArray *out,               // Sorted array to return. May be NULL
    12        const psFloatArray *myArray      // Array to sort
     10psSort(psFloatArray *out,               //!< Sorted array to return. May be NULL
     11       const psFloatArray *myArray      //!< Array to sort
    1312       );
    1413
    15 /* Sort an array, along with some other stuff */
    16 /* Returns an index array */
     14/** Sort an array, along with some other stuff.  Returns an index array */
    1715psIntArray *
    18 psCoSort(psIntArray *restrict out;      // Output index array (may be NULL)
    19          const psFloatArray *restrict myArray // Array to sort
     16psCoSort(psIntArray *restrict out;      //!< Output index array (may be NULL)
     17         const psFloatArray *restrict myArray //!< Array to sort
    2018         );
    2119
Note: See TracChangeset for help on using the changeset viewer.