IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 20, 2004, 6:12:37 PM (22 years ago)
Author:
eugene
Message:

substantial API changes based on change to PSLib SDRS

File:
1 edited

Legend:

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

    r604 r753  
    1919
    2020/** Constructor */
    21 psBitset *psBitsetAlloc(int n           ///< Number of bits required
    22     );
     21psBitset *psBitsetAlloc(int n)          ///< Number of bits required
     22;
    2323
    2424/** Destructor */
    25 void psBitsetFree(psBitset *restrict myBits ///< bitset to destroy
    26     );
     25void psBitsetFree(psBitset *restrict myBits) ///< bitset to destroy
     26;
    2727
    2828/************************************************************************************************************/
     
    3131psBitset *
    3232psBitsetSet(psBitset *restrict myBits,  ///< Input bitset
    33              int bit                    ///< Bit to set
    34     );
     33             int bit)                   ///< Bit to set
     34;
    3535
    3636/** Check a bitset.  Returns true or false */
    3737int
    3838psBitsetTest(const psBitset *restrict checkBits, ///< bitset to check
    39               int bit                   ///< Bit to check
    40     );
     39              int bit)                  ///< Bit to check
     40;
    4141
    4242/** apply the given operator to two bitsets */
     
    4545            const psBitset *restrict inBits1, ///< Input bitset 1
    4646            char *operator,             ///< bitset operator (AND, OR, XOR)
    47             const psBitset *restrict inBits2 ///< Input bitset 2
    48     );
     47            const psBitset *restrict inBits2) ///< Input bitset 2
     48;
    4949
    5050/** Apply unary NOT to a bitset */
    5151psBitset *
    5252psBitsetNot(psBitset *out,              ///< Output bitset, or NULL
    53             psBitset *in                ///< Input bitset to be NOT-ed
    54     );
     53            psBitset *in)               ///< Input bitset to be NOT-ed
     54;
    5555
    5656/* \} */ // End of MathGroup Functions
Note: See TracChangeset for help on using the changeset viewer.