zoomtst3: setting option step=5
[yaz-moved-to-github.git] / zoom / zoomtst7.c
index 0f39f89..4fb83bd 100644 (file)
@@ -1,8 +1,7 @@
-/* $Id: zoomtst7.c,v 1.15 2006-04-21 10:28:08 adam Exp $  */
-
-/** \file zoomtst7.c
-    \brief Mix of operations
-*/
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2011 Index Data
+ * See the file LICENSE for details.
+ */
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -21,7 +20,6 @@ int main(int argc, char **argv)
     ZOOM_resultset r[10];  /* and result sets .. */
     ZOOM_options o;
 
-    nmem_init ();
     o = ZOOM_options_create ();
 
     z = ZOOM_connection_new ("localhost", 9999);
@@ -156,18 +154,19 @@ int main(int argc, char **argv)
             z = ZOOM_connection_create (o);
             ZOOM_connection_connect (z, host, 0);
 
-            scan = ZOOM_connection_scan (z, "@attr 1=4 a");
+            scan = ZOOM_connection_scan(z, "@attr 1=4 a");
             if (block > 0)
                 while (ZOOM_event (1, &z))
                     ;
             printf (" scan size = %ld\n", (long) ZOOM_scanset_size(scan));
-            for (j = 0; j<ZOOM_scanset_size (scan); j++)
+            for (j = 0; j < (int) ZOOM_scanset_size (scan); j++)
             {
-                int occur, len;
+                size_t len;
+                size_t occur;
                 const char *term;
                 term = ZOOM_scanset_term (scan, 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);
                 
             }
             ZOOM_scanset_destroy (scan);
@@ -182,6 +181,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