Expanded tabs in all source files. Added vim/emacs local variables
[yaz-moved-to-github.git] / include / yaz / marcdisp.h
index 3760a2f..4c425f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1995-2002, Index Data.
+ * Copyright (C) 1995-2005, Index Data ApS
  *
  * Permission to use, copy, modify, distribute, and sell this software and
  * its documentation, in whole or in part, for any purpose, is hereby granted,
  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  * OF THIS SOFTWARE.
  *
- * $Id: marcdisp.h,v 1.7 2002-12-16 13:13:53 adam Exp $
+ * $Id: marcdisp.h,v 1.14 2005-06-25 15:46:03 adam Exp $
+ */
+
+/**
+ * \file marcdisp.h
+ * \brief Header for MARC display - and conversion utilities
  */
 
 #ifndef MARCDISP_H
@@ -48,6 +53,11 @@ YAZ_EXPORT void yaz_marc_xml(yaz_marc_t mt, int xmlmode);
 #define YAZ_MARC_SIMPLEXML 1
 #define YAZ_MARC_OAIMARC   2
 #define YAZ_MARC_MARCXML   3
+#define YAZ_MARC_ISO2709   4
+#define YAZ_MARC_XCHANGE   5
+
+/* supply iconv handle for character set conversion .. */
+YAZ_EXPORT void yaz_marc_iconv(yaz_marc_t mt, yaz_iconv_t cd);
 
 /* set debug level, 0=none, 1=more, 2=even more, .. */
 YAZ_EXPORT void yaz_marc_debug(yaz_marc_t mt, int level);
@@ -68,10 +78,12 @@ YAZ_EXPORT int marc_display_ex (const char *buf, FILE *outf, int debug);
 YAZ_EXPORT int marc_display_exl (const char *buf, FILE *outf, int debug,
                                  int length);
 YAZ_EXPORT int marc_display_wrbuf (const char *buf, WRBUF wr, int debug,
-                                  int bsize);
+                                   int bsize);
 YAZ_EXPORT int yaz_marc_decode(const char *buf, WRBUF wr,
                                int debug, int bsize, int xml);
 
+YAZ_EXPORT void yaz_marc_subfield_str(yaz_marc_t mt, const char *s);
+YAZ_EXPORT void yaz_marc_endline_str(yaz_marc_t mt, const char *s);
 
 /* like atoi except that it reads exactly len characters */
 YAZ_EXPORT int atoi_n (const char *buf, int len);
@@ -84,3 +96,11 @@ YAZ_EXPORT int atoi_n (const char *buf, int len);
 YAZ_END_CDECL
 
 #endif
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+