Use term Windows rather than win32
[yaz-moved-to-github.git] / zoom / zoomtst8.c
index 39fc1b1..e871813 100644 (file)
@@ -1,8 +1,7 @@
-/* $Id: zoomtst8.c,v 1.6 2007-01-03 08:42:17 adam Exp $  */
-
-/** \file zoomtst8.c
-    \brief Asynchronous multi-target client doing scan
-*/
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) Index Data
+ * See the file LICENSE for details.
+ */
 
 #include <stdio.h>
 #include <string.h>
@@ -39,7 +38,7 @@ int main(int argc, char **argv)
 
         /* connect and init */
         ZOOM_connection_connect (z[i], argv[1+i], 0);
-        
+
     }
     /* scan all */
     for (i = 0; i<no; i++)
@@ -47,7 +46,7 @@ int main(int argc, char **argv)
         /* set number of scan terms to be returned. */
         ZOOM_connection_option_set (z[i], "number", "7");
         /* and perform scan */
-        s[i] = ZOOM_connection_scan (z[i], argv[argc-1]);
+        s[i] = ZOOM_connection_scan(z[i], argv[argc-1]);
     }
 
     /* network I/O. pass number of connections and array of connections */
@@ -66,13 +65,13 @@ int main(int argc, char **argv)
         {
             int j;
             printf ("%s\n", ZOOM_connection_option_get(z[i], "host"));
-            for (j = 0; j<ZOOM_scanset_size (s[i]); j++)
+            for (j = 0; j < (int) ZOOM_scanset_size (s[i]); j++)
             {
-                int occur, len;
+                size_t occur, len;
                 const char *term;
                 term = ZOOM_scanset_term (s[i], j, &occur, &len);
                 if (term)
-                    printf ("%d %.*s %d\n", j, len, term, occur);
+                    printf ("%d %.*s %d\n", j, (int) len, term, (int) occur);
             }
         }
     }
@@ -89,6 +88,7 @@ int main(int argc, char **argv)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab