IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 31, 2004, 5:01:04 PM (22 years ago)
Author:
Paul Price
Message:

Standardised on /< as Doxygen comment for variable.

File:
1 edited

Legend:

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

    r257 r344  
    99/** A bitmask of arbitrary length. */
    1010typedef struct {
    11     int n;                              //!< Number of chars that form the mask
    12     char *bits;                         //!< The bits
     11    int n;                              ///< Number of chars that form the mask
     12    char *bits;                         ///< The bits
    1313} psBitMask;
    1414
     
    1919
    2020/** Constructor */
    21 psBitMask *psBitMaskAlloc(int n         //!< Number of bits required
     21psBitMask *psBitMaskAlloc(int n         ///< Number of bits required
    2222    );
    2323
    2424/** Destructor */
    25 void psBitMaskFree(psBitMask *restrict myMask //!< Bit mask to destroy
     25void psBitMaskFree(psBitMask *restrict myMask ///< Bit mask to destroy
    2626    );
    2727
     
    3030/** Set a bit mask */
    3131psBitMask *
    32 psBitMaskSet(psBitMask *outMask,        //!< Output bit mask or NULL
    33              const psBitMask *myMask,   //!< Input bit mask
    34              int bit                    //!< Bit to set
     32psBitMaskSet(psBitMask *outMask,        ///< Output bit mask or NULL
     33             const psBitMask *myMask,   ///< Input bit mask
     34             int bit                    ///< Bit to set
    3535    );
    3636
    3737/** Check a bit mask.  Returns true or false */
    3838int
    39 psBitMaskTest(const psBitMask *checkMask, //!< Bit mask to check
    40               int bit                   //!< Bit to check
     39psBitMaskTest(const psBitMask *checkMask, ///< Bit mask to check
     40              int bit                   ///< Bit to check
    4141    );
    4242
    4343/** apply the given operator to two bit masks */
    4444psBitMask *
    45 psBitMaskOp(psBitMask *outMask,         //!< Output bit mask or NULL
    46             const psBitMask *restrict inMask1, //!< Input bit mask 1
    47             char *operator,             //!< bit mask operator (AND, OR, XOR)
    48             const psBitMask *restrict inMask2 //!< Input bit mask 2
     45psBitMaskOp(psBitMask *outMask,         ///< Output bit mask or NULL
     46            const psBitMask *restrict inMask1, ///< Input bit mask 1
     47            char *operator,             ///< bit mask operator (AND, OR, XOR)
     48            const psBitMask *restrict inMask2 ///< Input bit mask 2
    4949    );
    5050
Note: See TracChangeset for help on using the changeset viewer.