MED fichier
medlink.f
Aller à la documentation de ce fichier.
1 C* This file is part of MED.
2 C*
3 C* COPYRIGHT (C) 1999 - 2021 EDF R&D, CEA/DEN
4 C* MED is free software: you can redistribute it and/or modify
5 C* it under the terms of the GNU Lesser General Public License as published by
6 C* the Free Software Foundation, either version 3 of the License, or
7 C* (at your option) any later version.
8 C*
9 C* MED is distributed in the hope that it will be useful,
10 C* but WITHOUT ANY WARRANTY; without even the implied warranty of
11 C* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 C* GNU Lesser General Public License for more details.
13 C*
14 C* You should have received a copy of the GNU Lesser General Public License
15 C* along with MED. If not, see <http://www.gnu.org/licenses/>.
16 C*
17 c
18 c
19 c
20  subroutine mlnliw(fid,mname,lname,cret)
21 c DEC$ ATTRIBUTES DLLEXPORT :: mlnliw
22 c
23  implicit none
24  save
25  character*(*) mname,lname
26  integer*8 fid
27  integer cret
28  integer mlnfliw
29 c
30  cret = mlnfliw(fid,mname,len(mname),lname,len(lname))
31 c
32  return
33  end
34 c
35 c
36 c
37  subroutine mlnnln(fid,n,cret)
38 c DEC$ ATTRIBUTES DLLEXPORT :: mlnnln
39 c
40  implicit none
41  save
42  integer*8 fid
43  integer n,cret
44  integer mlnfnln
45 c
46  n = mlnfnln(fid)
47 c
48  if (n.lt.0) then
49  cret = -1
50  else
51  cret = 0
52  endif
53 c
54  return
55  end
56 c
57 c
58 c
59  subroutine mlnlni(fid, it, mname, lsize, cret)
60 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlni
61 c
62  implicit none
63  save
64 c
65  character *(*) mname
66  integer*8 fid
67  integer lsize, it, cret
68  integer mlnflni
69 c
70  cret = mlnflni(fid, it, mname, lsize)
71 c
72  return
73  end
74 c
75 c
76 c
77  subroutine mlnlai(fid, mname, lsize, cret)
78 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlai
79 c
80  implicit none
81  save
82 c
83  character *(*) mname
84  integer*8 fid
85  integer lsize, cret,n
86  integer mlnflai
87 c
88  n = mlnflai(fid, mname, len(mname), lsize)
89 c
90  if (n.lt.0) then
91  cret = -1
92  else
93  cret = 0
94  endif
95 c
96  return
97  end
98 c
99 c
100 c
101  subroutine mlnlir(fid,mname,lname,cret)
102 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlir
103 c
104  implicit none
105  save
106  character*(*) mname,lname
107  integer*8 fid
108  integer cret
109  integer mlnflir
110 c
111  cret = mlnflir(fid,mname,len(mname),lname,len(lname))
112 c
113  return
114  end
115 
116 
mlnlai
subroutine mlnlai(fid, mname, lsize, cret)
Cette routine permet de lire les informations sur un lien dans un fichier MED.
Definition: medlink.f:78
mlnlni
subroutine mlnlni(fid, it, mname, lsize, cret)
Cette routine permet de lire les informations sur un lien dans un fichier MED.
Definition: medlink.f:60
mlnliw
subroutine mlnliw(fid, mname, lname, cret)
Cette routine permet d'écrire un lien dans un fichier MED.
Definition: medlink.f:21
mlnlir
subroutine mlnlir(fid, mname, lname, cret)
Cette routine permet de lire un lien dans un fichier MED.
Definition: medlink.f:102
mlnnln
subroutine mlnnln(fid, n, cret)
Cette routine permet la lecture du nombre de lien dans un fichier MED.
Definition: medlink.f:38