/* * ris2xml.c * * Copyright (c) Chris Putnam 2003-2020 * * Program and source code released under the GPL version 2 * */ #include #include #include "bibutils.h" #include "bibformats.h" #include "tomods.h" #include "bibprog.h" char help1[] = "Converts a RIS reference file into MODS XML"; char help2[] = "ris_file"; const char progname[] = "ris2xml"; int main( int argc, char *argv[] ) { param p; risin_initparams( &p, progname ); modsout_initparams( &p, progname ); tomods_processargs( &argc, argv, &p, help1, help2 ); bibprog( argc, argv, &p ); bibl_freeparams( &p ); return EXIT_SUCCESS; }