Fix documentation of of chr's equivalent directive ZEB-672
[idzebra-moved-to-github.git] / test / api / test_sortidx.c
index 89c9e72..b10b791 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1995-2008 Index Data
+   Copyright (C) Index Data
 
 Zebra is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <idzebra/bfile.h>
 #include <sortidx.h>
 #include "testlib.h"
@@ -92,16 +95,16 @@ static void tst2(zebra_sort_index_t si)
         WRBUF w2 = wrbuf_alloc();
         zebra_sort_sysno(si, sysno);
         YAZ_CHECK_EQ(zebra_sort_read(si, 0, w2), 0);
-        
+
         for (i = 0; i < 600; i++) /* 600 * 6 < max size =4K */
             wrbuf_write(w1, "12345", 6);
-        
+
         zebra_sort_add(si, input_section_id, w1);
-        
+
         zebra_sort_sysno(si, sysno);
-        
+
         YAZ_CHECK_EQ(zebra_sort_read(si, &output_section_id, w2), 1);
-        
+
         YAZ_CHECK_EQ(wrbuf_len(w1), wrbuf_len(w2));
         YAZ_CHECK(!memcmp(wrbuf_buf(w1), wrbuf_buf(w2), wrbuf_len(w2)));
         YAZ_CHECK_EQ(input_section_id, output_section_id);
@@ -158,6 +161,7 @@ TL_MAIN
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab