Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4079)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4080)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.118 2005-06-01 21:51:25 jhoblitt Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.119 2005-06-01 22:10:01 jhoblitt Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -662,4 +662,5 @@
   \item change \code{psHash} to store it's number of elements as an \code{unsigned long int}
   \item change \code{psLookupTable} to store it's index as an \code{unsigned long int}
-\end{itemize}
-\end{itemize}
+  \item change \code{psBitSet} to store it's size as an \code{long int}
+\end{itemize}
+\end{itemize}
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 4079)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 4080)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.254 2005-06-01 21:57:39 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.255 2005-06-01 22:10:01 jhoblitt Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -2054,5 +2054,5 @@
 \begin{datatype}
 typedef struct {
-    int n;                              ///< Number of chars that form the bitset
+    long int n;                         ///< Number of chars that form the bitset
     char *bits;                         ///< The bits
 } psBitSet;
@@ -2061,5 +2061,5 @@
 We also require the corresponding constructor and destructor:
 \begin{prototype}
-psBitSet *psBitSetAlloc(psU32 nalloc);
+psBitSet *psBitSetAlloc(long int nalloc);
 \end{prototype}
 where \code{n} is the requested number of bits.
@@ -2075,9 +2075,9 @@
 
 \begin{prototype}
-psBitSet *psBitSetSet(psBitSet *bitSet, psU32 bit);
-psBitSet* psBitSetClear(psBitSet *bitSet, psU32 bit);
+psBitSet *psBitSetSet(psBitSet *bitSet, long int bit);
+psBitSet* psBitSetClear(psBitSet *bitSet, long int bit);
 psBitSet *psBitSetOp(psBitSet *outBitSet, const psBitSet *inBitSet1, const char *operator, const psBitSet *inBitSet2);
 psBitSet *psBitSetNot(psBitSet *outBitSet, const psBitSet *inBitSet);
-bool psBitSetTest(const psBitSet *bitSet, psU32 bit);
+bool psBitSetTest(const psBitSet *bitSet, long int bit);
 char *psBitSetToString(const psBitSet* bitSet);
 \end{prototype}
@@ -2087,11 +2087,11 @@
 will be modified.
 
-\code{psBitSetClear} clears the specified \code{bit} in the \code{inBits}
+\code{psBitSetClear} clears the specified \code{bit} in the \code{bitSet}
 and returns the updated bitset.  The input bitset will be modified.
 
 \code{psBitSetOp} returns the \code{psBitSet} that is the result of
 performing the specified \code{operator} (one of \code{"AND"},
-\code{"OR"}, or \code{"XOR"}) on \code{inBits1} and \code{inBits2}.
-If the output bitset \code{outBits} is \code{NULL}, it is created by
+\code{"OR"}, or \code{"XOR"}) on \code{inBitSet1} and \code{inBitSet2}.
+If the output bitset \code{outBitSet} is \code{NULL}, it is created by
 the function.
 
