Index: trunk/psLib/src/image/psImage.c
===================================================================
--- trunk/psLib/src/image/psImage.c	(revision 1407)
+++ trunk/psLib/src/image/psImage.c	(revision 1440)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:58 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -32,5 +32,5 @@
 #include "psImage.h"
 
-static void imageFree(psImage * image);
+static void imageFree(psImage* image);
 
 /*****************************************************************************/
@@ -40,5 +40,5 @@
 /*****************************************************************************/
 
-psImage *psImageAlloc(unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageAlloc(unsigned int numCols, unsigned int numRows, const psElemType type)
 {
     int area = 0;
@@ -61,5 +61,5 @@
     }
 
-    psImage *image = (psImage *) psAlloc(sizeof(psImage));
+    psImage* image = (psImage* ) psAlloc(sizeof(psImage));
 
     if (image == NULL) {
@@ -87,6 +87,6 @@
     *(unsigned int *)&image->numCols = numCols;
     *(unsigned int *)&image->numRows = numRows;
-    *(psDimen *) & image->type.dimen = PS_DIMEN_IMAGE;
-    *(psElemType *) & image->type.type = type;
+    *(psDimen* ) & image->type.dimen = PS_DIMEN_IMAGE;
+    *(psElemType* ) & image->type.type = type;
     image->parent = NULL;
     image->nChildren = 0;
@@ -96,5 +96,5 @@
 }
 
-static void imageFree(psImage * image)
+static void imageFree(psImage* image)
 {
     if (image == NULL) {
@@ -107,5 +107,5 @@
         unsigned int oldNumRows = image->numRows;
         unsigned int oldNumCols = image->numCols;
-        psPTR *rowPtr;
+        psPTR* rowPtr;
 
         for (unsigned int row = 0; row < oldNumRows; row++) {
@@ -124,5 +124,5 @@
 }
 
-psImage *psImageRecycle(psImage * old, unsigned int numCols, unsigned int numRows, const psElemType type)
+psImage* psImageRecycle(psImage* old, unsigned int numCols, unsigned int numRows, const psElemType type)
 {
     int elementSize = PSELEMTYPE_SIZEOF(type);  // element
@@ -151,5 +151,5 @@
         unsigned int oldNumRows = old->numRows;
         unsigned int oldNumCols = old->numCols;
-        psPTR *rowPtr;
+        psPTR* rowPtr;
 
         for (unsigned int row = 0; row < oldNumRows; row++) {
@@ -177,14 +177,14 @@
     *(unsigned int *)&old->numCols = numCols;
     *(unsigned int *)&old->numRows = numRows;
-    *(psElemType *) & old->type.type = type;
+    *(psElemType* ) & old->type.type = type;
 
     return old;
 }
 
-int psImageFreeChildren(psImage * image)
+int psImageFreeChildren(psImage* image)
 {
     int i = 0;
     int nChildren = 0;
-    psImage **children = NULL;
+    psImage* *children = NULL;
     int numFreed = 0;
 
@@ -216,5 +216,5 @@
 linear interpolation is performed on the image.
  *****************************************************************************/
-psF32 psImagePixelInterpolate(const psImage * input,
+psF32 psImagePixelInterpolate(const psImage* input,
                               float x, float y, psF32 unexposedValue, psImageInterpolateMode mode)
 {
@@ -259,5 +259,5 @@
 
 #define PSIMAGE_PIXEL_INTERPOLATE_FLAT(TYPE) \
-inline psF64 p_psImagePixelInterpolateFLAT_##TYPE(const psImage *input, \
+inline psF64 p_psImagePixelInterpolateFLAT_##TYPE(const psImage* input, \
         float x, \
         float y, \
@@ -280,5 +280,5 @@
 
 #define PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(TYPE) \
-inline psC64 p_psImagePixelInterpolateFLAT_##TYPE(const psImage *input, \
+inline psC64 p_psImagePixelInterpolateFLAT_##TYPE(const psImage* input, \
         float x, \
         float y, \
@@ -313,5 +313,5 @@
 PSIMAGE_PIXEL_INTERPOLATE_FLAT_COMPLEX(C64)
 #define PSIMAGE_PIXEL_INTERPOLATE_BILINEAR(TYPE) \
-inline psF64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage *input, \
+inline psF64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage* input, \
         float x, \
         float y, \
@@ -368,5 +368,5 @@
 }
 #define PSIMAGE_PIXEL_INTERPOLATE_BILINEAR_COMPLEX(TYPE) \
-inline psC64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage *input, \
+inline psC64 p_psImagePixelInterpolateBILINEAR_##TYPE(const psImage* input, \
         float x, \
         float y, \
