X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fmarcdisp.h;h=d7bbaa0367787d447603a24d5c8251891fab2c36;hp=0b2b66b1fd748bf638698375f74a966729335da8;hb=6b3366d135740d9ab37bdcd3f00b115fedf30a9d;hpb=bbfac2e92dee794029b7a2ee6c843c9b99e22cc3 diff --git a/include/yaz/marcdisp.h b/include/yaz/marcdisp.h index 0b2b66b..d7bbaa0 100644 --- a/include/yaz/marcdisp.h +++ b/include/yaz/marcdisp.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2013 Index Data. + * Copyright (C) Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -262,6 +262,15 @@ int yaz_marc_write_xml(yaz_marc_t mt, xmlNode **root_ptr, const char *type); #endif +/** \brief writes MARC record in JSON represenation + \param mt handle + \param w WRBUF for output + \retval 0 Creation successful + \retval -1 ERROR +*/ +YAZ_EXPORT +int yaz_marc_write_json(yaz_marc_t mt, WRBUF w); + /** \brief sets leader spec (for modifying bytes in 24 byte leader) \param mt handle \param leader_spec @@ -471,6 +480,10 @@ YAZ_EXPORT int yaz_marc_write_trailer(yaz_marc_t mt, WRBUF wr); */ YAZ_EXPORT void yaz_marc_enable_collection(yaz_marc_t mt); +struct json_node; + +YAZ_EXPORT int yaz_marc_read_json_node(yaz_marc_t mt, struct json_node *n); + YAZ_END_CDECL #endif