/* * modsclean.c * * Copyright (c) Chris Putnam 2004-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" const char progname[] = "modsclean"; int main( int argc, char *argv[] ) { param p; modsin_initparams( &p, progname ); modsout_initparams( &p, progname ); tomods_processargs( &argc, argv, &p, "", "" ); bibprog( argc, argv, &p ); bibl_freeparams( &p ); return EXIT_SUCCESS; }