Index: /trunk/psLib/src/db/psDB.c
===================================================================
--- /trunk/psLib/src/db/psDB.c	(revision 9421)
+++ /trunk/psLib/src/db/psDB.c	(revision 9422)
@@ -12,6 +12,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.99 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-09 21:27:11 $
+ *  @version $Revision: 1.100 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-10-09 22:11:34 $
  *
  *  Copyright (C) 2005-2006  Joshua Hoblitt, University of Hawaii
@@ -116,7 +116,4 @@
 static psPtr    psDBGetPTypeNaN(psElemType pType);
 static bool     psDBIsPTypeNaN(psElemType pType, psPtr data);
-
-// string utility functions
-static char    *psDBIntToString(psU64 n);
 
 
@@ -2132,5 +2129,5 @@
 /*****************************************************************************/
 
-static char *psDBIntToString(psU64 n)
+psString psDBIntToString(psU64 n)
 {
     // length of string (log10 + 1) + \0
Index: /trunk/psLib/src/db/psDB.h
===================================================================
--- /trunk/psLib/src/db/psDB.h	(revision 9421)
+++ /trunk/psLib/src/db/psDB.h	(revision 9422)
@@ -10,6 +10,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-09 21:27:11 $
+ *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-10-09 22:11:34 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -399,4 +399,14 @@
 );
 
+/** converts an integer into a psString
+ *
+ * Note that this function takes an unsigned value.
+ *
+ * @return psString:   A psString or NULL on failure
+ */
+psString psDBIntToString(
+    psU64 n                           // integer value to convert
+);
+
 
 /// @}
