Bump copyright year
[idzebra-moved-to-github.git] / include / idzebra / recctrl.h
index 191bde8..49337da 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1994-2009 Index Data
+   Copyright (C) 2004-2013 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
@@ -68,15 +68,15 @@ typedef struct {
 /** \brief record reader stream */
 struct ZebraRecStream {
     /** client data */
-    void      *fh;    
+    void      *fh;
     /** \brief read function */
     int       (*readf)(struct ZebraRecStream *s, char *buf, size_t count);
     /** \brief seek function */
     off_t     (*seekf)(struct ZebraRecStream *s, off_t offset);
     /** \brief tell function */
-    off_t     (*tellf)(struct ZebraRecStream *s);              
+    off_t     (*tellf)(struct ZebraRecStream *s);
     /** \brief set and get of record position */
-    off_t     (*endf)(struct ZebraRecStream *s, off_t *offset);   
+    off_t     (*endf)(struct ZebraRecStream *s, off_t *offset);
     /** \brief close and destroy stream */
     void      (*destroy)(struct ZebraRecStream *s);
 };
@@ -127,14 +127,14 @@ struct recRetrieveCtrl {
     int       recordSize;             /* size of record in bytes */
     char      *fname;                 /* name of file (or NULL if internal) */
     data1_handle dh;
-    
+
     /* response */
     const Odr_oid * output_format;    /* output format OID */
     void *     rec_buf;
     int        rec_len;
     int        diagnostic;
     char *     addinfo;
-    
+
     /* special fetch to be included in retrieved response (say snippets) */
     void *handle;
     int (*special_fetch)(void *handle, const char *esn,
@@ -204,6 +204,7 @@ YAZ_END_CDECL
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab