IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

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

    r1807 r2204  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-09-14 20:01:52 $
     14 *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-10-27 00:57:31 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#ifndef PSBITSET_H
    2121#define PSBITSET_H
     22
     23#include "psType.h"
    2224
    2325/// @addtogroup BitSet
     
    3537typedef struct
    3638{
    37     int n;                             ///< Number of bytes in the array
     39    psS32 n;                             ///< Number of bytes in the array
    3840    char *bits;                        ///< Aray of bytes holding bits
    3941}
     
    5456/*@null@*/
    5557psBitSet* psBitSetAlloc(
    56     int n                              ///< Number of bits in psBitSet array
     58    psS32 n                              ///< Number of bits in psBitSet array
    5759);
    5860
     
    6870    /* @returned@ */
    6971    psBitSet* restrict inMask,         ///< Pointer to psBitSet to be set.
    70     int bit                            ///< Bit to be set.
     72    psS32 bit                            ///< Bit to be set.
    7173);
    7274
     
    8284    /* @returned@ */
    8385    psBitSet* restrict inMask,         ///< Pointer to psBitSet to be cleared.
    84     int bit                            ///< Bit to be cleared.
     86    psS32 bit                            ///< Bit to be cleared.
    8587);
    8688
     
    9597 */
    9698
    97 bool psBitSetTest(
     99psBool psBitSetTest(
    98100    const psBitSet* restrict inMask,   ///< Pointer psBitSet to be tested.
    99     int bit                            ///< Bit to be tested.
     101    psS32 bit                            ///< Bit to be tested.
    100102);
    101103
Note: See TracChangeset for help on using the changeset viewer.