MEDmeshCr.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
00019 #include <med.h>
00020 #include <med_config.h>
00021 #include <med_outils.h>
00022
00023 #include <string.h>
00024 #include <stdlib.h>
00025
00044 med_err
00045 MEDmeshCr(const med_idt fid,
00046 const char * const meshname,
00047 const med_int spacedim,
00048 const med_int meshdim,
00049 const med_mesh_type meshtype,
00050 const char * const description,
00051 const char * const dtunit,
00052 const med_sorting_type sortingtype,
00053 const med_axis_type axistype,
00054 const char * const axisname,
00055 const char * const axisunit)
00056 {
00057
00058 return _MEDmeshCr(fid, MED_MAA , meshname, spacedim, meshdim, meshtype,
00059 description, dtunit, sortingtype, axistype, axisname, axisunit);
00060
00061 }