IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1407 r1440  
    1313 *  @author Ross Harman, MHPCC
    1414 *
    15  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2004-08-07 00:06:06 $
     15 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2004-08-09 23:34:57 $
    1717 *
    1818 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5656 *  allocation.
    5757 *
    58  *  @return  psBitSet*: Pointer to struct containing array of bits and size of array.
     58 *  @return  psBitSet* : Pointer to struct containing array of bits and size of array.
    5959 */
    6060
    6161/*@null@*/
    6262
    63 psBitSet *psBitSetAlloc(int n
     63psBitSet* psBitSetAlloc(int n
    6464                        /**< Number of bits in psBitSet array */
    6565                       );
     
    7171 *  an array with two elements would result in an psBitSet that looks like 00000000 00001000.
    7272 *
    73  *  @return  psBitSet*: Pointer to struct containing psBitSet.
     73 *  @return  psBitSet* : Pointer to struct containing psBitSet.
    7474 */
    75 psBitSet *psBitSetSet(
     75psBitSet* psBitSetSet(
    7676
    77     /* @returned@ */ psBitSet * restrict inMask,
     77    /* @returned@ */ psBitSet* restrict inMask,
    7878    /**< Pointer to psBitSet to be set. */
    7979
     
    9191 */
    9292
    93 bool psBitSetTest(const psBitSet * restrict inMask,
     93bool psBitSetTest(const psBitSet* restrict inMask,
    9494                  /**< Pointer psBitSet to be tested. */
    9595
     
    102102 *  be performed and an error message will be logged.
    103103 *
    104  *  @return  psBitSet*: Pointer to struct containing result of binary operation.
     104 *  @return  psBitSet* : Pointer to struct containing result of binary operation.
    105105 */
    106 psBitSet *psBitSetOp(
     106psBitSet* psBitSetOp(
    107107
    108     /* @returned@ */ psBitSet * restrict outMask,
     108    /* @returned@ */ psBitSet* restrict outMask,
    109109    /**< Resulting psBitSet from binary operation */
    110110
    111     const psBitSet * restrict inMask1,
     111    const psBitSet* restrict inMask1,
    112112    /**< First psBitSet on which to operate */
    113113
    114114    char *operator,         /**< Bit operation */
    115115
    116     const psBitSet * restrict inMask2
     116    const psBitSet* restrict inMask2
    117117    /**< First psBitSet on which to operate */
    118118);
     
    122122 *  Toggles bits in a psBitset. All zero bits are set to one and all one bits are set to zero.
    123123 *
    124  *  @return  psBitSet*: Pointer to struct containing result of operation.
     124 *  @return  psBitSet* : Pointer to struct containing result of operation.
    125125 */
    126126
    127 psBitSet *psBitSetNot(psBitSet * outBitSet,
     127psBitSet* psBitSetNot(psBitSet* outBitSet,
    128128                      /**< Resulting psBitSet from operation */
    129129
    130                       const psBitSet * restrict inBitSet
     130                      const psBitSet* restrict inBitSet
    131131                      /**< Input psBitSet */
    132132                     );
     
    140140 */
    141141
    142 char *psBitSetToString(const psBitSet * restrict inMask
     142char *psBitSetToString(const psBitSet* restrict inMask
    143143                       /**< psBitSet to convert */
    144144                      );
Note: See TracChangeset for help on using the changeset viewer.