Changeset 1166
- Timestamp:
- Jun 30, 2004, 2:45:41 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
collections/psBitSet.c (modified) (3 diffs)
-
collections/psBitSet.h (modified) (2 diffs)
-
types/psBitSet.c (modified) (3 diffs)
-
types/psBitSet.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psBitSet.c
r1162 r1166 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07-01 00: 14:25$12 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-01 00:45:41 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include <ctype.h> 24 24 #include <math.h> 25 #include <stdbool.h> 25 26 26 27 #include "psBitSet.h" … … 140 141 } 141 142 142 intpsBitSetTest(const psBitSet *inBitSet, int bit)143 bool psBitSetTest(const psBitSet *inBitSet, int bit) 143 144 { 144 145 char* byte = NULL; -
trunk/psLib/src/collections/psBitSet.h
r1073 r1166 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-0 6-23 23:00:15$14 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-07-01 00:45:32 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 78 78 * @return int: Value of bit, either one or zero. 79 79 */ 80 intpsBitSetTest(80 bool psBitSetTest( 81 81 const psBitSet *restrict inMask, /**< Pointer psBitSet to be tested. */ 82 82 int bit /**< Bit to be tested. */ -
trunk/psLib/src/types/psBitSet.c
r1162 r1166 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-07-01 00: 14:25$12 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-07-01 00:45:41 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 #include <ctype.h> 24 24 #include <math.h> 25 #include <stdbool.h> 25 26 26 27 #include "psBitSet.h" … … 140 141 } 141 142 142 intpsBitSetTest(const psBitSet *inBitSet, int bit)143 bool psBitSetTest(const psBitSet *inBitSet, int bit) 143 144 { 144 145 char* byte = NULL; -
trunk/psLib/src/types/psBitSet.h
r1073 r1166 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-0 6-23 23:00:15$14 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-07-01 00:45:32 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 78 78 * @return int: Value of bit, either one or zero. 79 79 */ 80 intpsBitSetTest(80 bool psBitSetTest( 81 81 const psBitSet *restrict inMask, /**< Pointer psBitSet to be tested. */ 82 82 int bit /**< Bit to be tested. */
Note:
See TracChangeset
for help on using the changeset viewer.
