Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/yaz
[yaz-moved-to-github.git] / src / ber_null.c
index b0db7f3..94fa80c 100644 (file)
@@ -1,9 +1,14 @@
-/*
- * Copyright (c) 1995-2003, Index Data
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2010 Index Data
  * See the file LICENSE for details.
- * Sebastian Hammer, Adam Dickmeiss
+ */
+
+/** 
+ * \file ber_null.c
+ * \brief Implements ber_null
  *
- * $Id: ber_null.c,v 1.1 2003-10-27 12:21:30 adam Exp $
+ * This source file implements BER encoding and decoding of
+ * the NULL type.
  */
 #if HAVE_CONFIG_H
 #include <config.h>
@@ -11,8 +16,8 @@
 
 #include "odr-priv.h"
 
-/*
- * BER-en/decoder for NULL type.
+/** 
+ * ber_null: BER-en/decoder for NULL type.
  */
 int ber_null(ODR o)
 {
@@ -21,9 +26,6 @@ int ber_null(ODR o)
     case ODR_ENCODE:
         if (odr_putc(o, 0X00) < 0)
             return 0;
-#ifdef ODR_DEBUG
-        fprintf(stderr, "[NULL]\n");
-#endif
         return 1;
     case ODR_DECODE:
         if (odr_max(o) < 1)
@@ -36,11 +38,20 @@ int ber_null(ODR o)
             odr_seterror(o, OPROTO, 12);
             return 0;
         }
-#ifdef ODR_DEBUG
-        fprintf(stderr, "[NULL]\n");
-#endif
         return 1;
-    case ODR_PRINT: return 1;
-    default: odr_seterror(o, OOTHER, 13); return 0;
+    case ODR_PRINT:
+        return 1;
+    default:
+        odr_seterror(o, OOTHER, 13);
+        return 0;
     }
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+