r11859: Canonicalize whitespace
[uffi.git] / tests / uffi-c-test.c
index 483d3bd4d1953094d38beea24066b1eb67c569c0..a8e696bde30c642de48bc1705bbd3e1aa796a5fe 100644 (file)
@@ -1,6 +1,6 @@
 /***************************************************************************
  * FILE IDENTIFICATION
- *  
+ *
  *  Name:         c-test-fns.c
  *  Purpose:      Test functions in C for UFFI library
  *  Programer:    Kevin M. Rosenberg
@@ -23,11 +23,11 @@ BOOL WINAPI DllEntryPoint(HINSTANCE hinstdll,
 {
         return 1;
 }
-       
+
 #define DLLEXPORT __declspec(dllexport)
 
 #else
-#define DLLEXPORT 
+#define DLLEXPORT
 #endif
 
 #include <ctype.h>
@@ -54,11 +54,11 @@ cs_count_upper (char* psz)
   if (psz) {
     while (*psz) {
       if (isupper (*psz))
-       ++count;
+        ++count;
       ++psz;
     }
     return count;
-  } else 
+  } else
     return -1;
 }
 
@@ -85,7 +85,7 @@ cs_make_random (int size, char* buffer)
     buffer[i] = 'A' + (rand() % 26);
 }
 
-    
+
 /* Test of input/output vector */
 DLLEXPORT
 void
@@ -96,7 +96,7 @@ half_double_vector (int size, double* vec)
     vec[i] /= 2.;
 }
 
-    
+
 
 DLLEXPORT
 void *
@@ -155,4 +155,4 @@ double fvar_struct_double () {
   return fvar_struct.d;
 }
 
-     
+