]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cgi-bin/testhi.c
Load cups into easysw/current.
[thirdparty/cups.git] / cgi-bin / testhi.c
index dad5d70b7053563dfaa56f04e4c3098945f3f595..1d6e23f046f3e383b5ba1121a8a9e2dd283589c4 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * "$Id: testhi.c 5143 2006-02-21 19:13:01Z mike $"
+ * "$Id: testhi.c 6257 2007-02-11 01:11:57Z mike $"
  *
  *   Help index test program for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2005 by Easy Software Products.
+ *   Copyright 1997-2007 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
@@ -105,14 +105,18 @@ list_nodes(const char   *title,           /* I - Title string */
   for (i = 1, node = (help_node_t *)cupsArrayFirst(nodes);
        node;
        i ++, node = (help_node_t *)cupsArrayNext(nodes))
+  {
     if (node->anchor)
-      printf("    %d: %s#%s \"%s\"\n", i, node->filename, node->anchor,
+      printf("    %d: %s#%s \"%s\"", i, node->filename, node->anchor,
              node->text);
     else
-      printf("    %d: %s \"%s\"\n", i, node->filename, node->text);
+      printf("    %d: %s \"%s\"", i, node->filename, node->text);
+
+    printf(" (%d words)\n", cupsArrayCount(node->words));
+  }
 }
 
 
 /*
- * End of "$Id: testhi.c 5143 2006-02-21 19:13:01Z mike $".
+ * End of "$Id: testhi.c 6257 2007-02-11 01:11:57Z mike $".
  */