Added skeleton for query charset conversion. Bug #977.
[yaz-moved-to-github.git] / src / grs1disp.c
index bef6b3d..ddf2928 100644 (file)
@@ -1,8 +1,13 @@
 /*
- * Copyright (c) 2002, Index Data.
+ * Copyright (C) 1995-2007, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: grs1disp.c,v 1.1 2003-10-27 12:21:30 adam Exp $
+ * $Id: grs1disp.c,v 1.6 2007-03-12 16:16:49 adam Exp $
+ */
+
+/**
+ * \file grs1disp.c
+ * \brief Implements display of GRS-1 records
  */
 
 #include <stdio.h>
@@ -61,9 +66,14 @@ static void display_grs1(WRBUF w, Z_GenericRecord *r, int level)
             }
         }
         else if (t->content->which == Z_ElementData_string)
-            wrbuf_printf(w, "%s\n", t->content->u.string);
+        {
+            wrbuf_puts(w, t->content->u.string);
+            wrbuf_puts(w, "\n");
+        }
         else if (t->content->which == Z_ElementData_numeric)
+        {
             wrbuf_printf(w, "%d\n", *t->content->u.numeric);
+        }
         else if (t->content->which == Z_ElementData_oid)
         {
             int *ip = t->content->u.oid;
@@ -115,3 +125,11 @@ void yaz_display_grs1(WRBUF wrbuf, Z_GenericRecord *r, int flags)
     display_grs1 (wrbuf, r, 0);
 }
 
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+