UsesCase_MEDfile_1.c
Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <med.h>
00019 #define MESGERR 1
00020 #include <med_utils.h>
00021
00022 #include <string.h>
00023
00024 int main (int argc, char **argv) {
00025
00026
00027
00028
00029
00030 med_idt fid;
00031
00032
00033 fid = MEDfileOpen("UsesCase_MEDfile_1.med",MED_ACC_CREAT);
00034 if (fid < 0) {
00035 MESSAGE("ERROR : file creation");
00036 return -1;
00037 }
00038
00039
00040 if (MEDfileCommentWr(fid,"A root MED file") < 0) {
00041 MESSAGE("ERROR : file comment writing");
00042 return -1;
00043 }
00044
00045
00046 if (MEDfileClose(fid) < 0) {
00047 MESSAGE("ERROR : file closing");
00048 return -1;
00049 }
00050
00051 return 0;
00052 }
00053