Reformat: delete trailing whitespace
[idzebra-moved-to-github.git] / bfile / tstbfile1.c
index 2576787..81f3209 100644 (file)
@@ -1,8 +1,5 @@
-/* $Id: tstbfile1.c,v 1.6 2007-11-14 09:44:16 adam Exp $
-   Copyright (C) 1995-2007
-   Index Data ApS
-
-This file is part of the Zebra server.
+/* This file is part of the Zebra server.
+   Copyright (C) 1994-2011 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
@@ -20,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdlib.h>
 #include <string.h>
 #include <idzebra/bfile.h>
@@ -32,16 +32,16 @@ void tst1(BFiles bfs)
     const char *more_info = 0;
 
     bf_reset(bfs);
-    bf = bf_xopen(bfs, "tst", /* block size */ 32, 
+    bf = bf_xopen(bfs, "tst", /* block size */ 32,
                  /* wr */ 1, "tstmagic",       &version, 0 /* more_info */);
     YAZ_CHECK(bf);
     if (!bf)
         return;
     bf_xclose(bf, version, "more info");
-    
-    bf = bf_xopen(bfs, "tst", /* block size */ 32, 
+
+    bf = bf_xopen(bfs, "tst", /* block size */ 32,
                  /* wr */ 1, "tstmagic",       &version, &more_info);
-    
+
     YAZ_CHECK(bf);
     if (!bf)
         return;
@@ -58,7 +58,7 @@ void tst2(BFiles bfs)
     BFile bf;
     bf_reset(bfs);
 
-    bf = bf_xopen(bfs, "tst", /* block size */ 32, 
+    bf = bf_xopen(bfs, "tst", /* block size */ 32,
                        /* wr */ 1, "tstmagic", &version, 0 /* more_info */);
     YAZ_CHECK(bf);
     if (!bf)
@@ -98,7 +98,7 @@ void tst3(BFiles bfs)
     for(i = 0; i<BLOCKS; i++)
        blocks[i] = 0;
 
-    bf = bf_xopen(bfs, "tst", /* block size */ 32, 
+    bf = bf_xopen(bfs, "tst", /* block size */ 32,
                        /* wr */ 1, "tstmagic", &version, 0 /* more_info */);
     YAZ_CHECK(bf);
     if (!bf)
@@ -157,7 +157,7 @@ void tst3(BFiles bfs)
        else
        {
            bf_xclose(bf, version, 0);
-           bf = bf_xopen(bfs, "tst", /* block size */ 32, 
+           bf = bf_xopen(bfs, "tst", /* block size */ 32,
                          /* wr */ 1, "tstmagic", &version, 0 /* more_info */);
        }
     }
@@ -191,6 +191,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