Doxygen Source Code Documentation
mvv.c File Reference
#include "mrilib.h"Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
Function Documentation
|
||||||||||||
|
\** File : SUMA.c
Input paramters :
Definition at line 3 of file mvv.c. References argc, multivector_free(), multivector_read(), multivector_set_name(), and multivector_write().
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 }
|