Doxygen Source Code Documentation
mvv.c
Go to the documentation of this file.00001 #include "mrilib.h" 00002 00003 int main( int argc , char * argv[] ) 00004 { 00005 multivector * mv ; int j ; 00006 00007 mv = multivector_read( argv[1] ) ; 00008 if( mv == NULL ){fprintf(stderr,"read fails\n");exit(1);} 00009 multivector_set_name( mv , NULL ) ; 00010 j = multivector_write( argv[2] , mv ) ; 00011 if( j == 0 ){fprintf(stderr,"write fails\n");exit(1);} 00012 multivector_free(mv) ; exit(0) ; 00013 }