#include <stdio.h>
#include <stdlib.h>
#include "bibutils.h"
#include "bibformats.h"
#include "tomods.h"
#include "bibprog.h"
char help1[] = "Converts a NCBI NBIB reference file into MODS XML\n\n";
char help2[] = "nbib_file";
const char progname[] = "nbib2xml";
int
main( int argc, char *argv[] )
{
param p;
nbibin_initparams( &p, progname );
modsout_initparams( &p, progname );
tomods_processargs( &argc, argv, &p, help1, help2 );
bibprog( argc, argv, &p );
bibl_freeparams( &p );
return EXIT_SUCCESS;
}