Changeset 952 for trunk/psLib/src/collections/psBitSet.c
- Timestamp:
- Jun 9, 2004, 11:18:53 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psBitSet.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psBitSet.c
r836 r952 4 4 * 5 5 * Bit masks are useful tools for toggling various flags and options. This set of functions module provides 6 * a mechanism to create an array of bits of arbitrary length and manipulate them with basic binary 6 * a mechanism to create an array of bits of arbitrary length and manipulate them with basic binary 7 7 * operations. A print function is also provided to display the entire set of bits in binary format as a 8 8 * string. 9 9 * 10 10 * @author Ross Harman, MHPCC 11 * 12 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-06-0 3 00:32:32$11 * 12 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-09 21:18:24 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 80 80 81 81 if(n <= 0) { 82 psError(__func__, " : Line %d - Allocation size must be > =0: size = %d\n", __LINE__, n);82 psError(__func__, " : Line %d - Allocation size must be > 0: size = %d\n", __LINE__, n); 83 83 return 0; 84 84 }
Note:
See TracChangeset
for help on using the changeset viewer.
