IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 18, 2004, 4:10:27 PM (22 years ago)
Author:
Paul Price
Message:

Updating from SDRS.

File:
1 edited

Legend:

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

    r753 r1581  
    2222;
    2323
    24 /** Destructor */
    25 void psBitsetFree(psBitset *restrict myBits) ///< bitset to destroy
    26 ;
    27 
    2824/************************************************************************************************************/
    2925
    3026/** Set a bitset */
    3127psBitset *
    32 psBitsetSet(psBitset *restrict myBits,  ///< Input bitset
    33              int bit)                   ///< Bit to set
     28psBitsetSet(psBitset *myBits,           ///< Input bitset
     29            int bit)                    ///< Bit to set
    3430;
    3531
    3632/** Check a bitset.  Returns true or false */
    37 int
    38 psBitsetTest(const psBitset *restrict checkBits, ///< bitset to check
    39               int bit)                  ///< Bit to check
     33bool
     34psBitsetTest(const psBitset *checkBits, ///< bitset to check
     35             int bit)                   ///< Bit to check
    4036;
    4137
     
    4339psBitset *
    4440psBitsetOp(psBitset *outBits,           ///< Output bitset or NULL
    45             const psBitset *restrict inBits1, ///< Input bitset 1
    46             char *operator,             ///< bitset operator (AND, OR, XOR)
    47             const psBitset *restrict inBits2) ///< Input bitset 2
     41           const psBitset *inBits1,     ///< Input bitset 1
     42           char *operator,              ///< bitset operator (AND, OR, XOR)
     43           const psBitset *inBits2)     ///< Input bitset 2
    4844;
    4945
Note: See TracChangeset for help on using the changeset viewer.