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 - 2016 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 fid,cret
27  integer mlnfliw
28 c
29  cret = mlnfliw(fid,mname,len(mname),lname,len(lname))
30 c
31  return
32  end
33 c
34 c
35 c
36  subroutine mlnnln(fid,n,cret)
37 c DEC$ ATTRIBUTES DLLEXPORT :: mlnnln
38 c
39  implicit none
40  save
41  integer fid,n,cret
42  integer mlnfnln
43 c
44  n = mlnfnln(fid)
45 c
46  if (n.lt.0) then
47  cret = -1
48  else
49  cret = 0
50  endif
51 c
52  return
53  end
54 c
55 c
56 c
57  subroutine mlnlni(fid, it, mname, lsize, cret)
58 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlni
59 c
60  implicit none
61  save
62 c
63  character *(*) mname
64  integer fid, lsize, it, cret
65  integer mlnflni
66 c
67  cret = mlnflni(fid, it, mname, lsize)
68 c
69  return
70  end
71 c
72 c
73 c
74  subroutine mlnlai(fid, mname, lsize, cret)
75 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlai
76 c
77  implicit none
78  save
79 c
80  character *(*) mname
81  integer fid, lsize, cret,n
82  integer mlnflai
83 c
84  n = mlnflai(fid, mname, len(mname), lsize)
85 c
86  if (n.lt.0) then
87  cret = -1
88  else
89  cret = 0
90  endif
91 c
92  return
93  end
94 c
95 c
96 c
97  subroutine mlnlir(fid,mname,lname,cret)
98 c DEC$ ATTRIBUTES DLLEXPORT :: mlnlir
99 c
100  implicit none
101  save
102  character*(*) mname,lname
103  integer fid,cret
104  integer mlnflir
105 c
106  cret = mlnflir(fid,mname,len(mname),lname,len(lname))
107 c
108  return
109  end
110 
111 
subroutine mlnnln(fid, n, cret)
Cette routine permet la lecture du nombre de lien dans un fichier MED.
Definition: medlink.f:37
subroutine mlnlir(fid, mname, lname, cret)
Cette routine permet de lire un lien dans un fichier MED.
Definition: medlink.f:98
subroutine mlnlai(fid, mname, lsize, cret)
Cette routine permet de lire les informations sur un lien dans un fichier MED.
Definition: medlink.f:75
subroutine mlnlni(fid, it, mname, lsize, cret)
Cette routine permet de lire les informations sur un lien dans un fichier MED.
Definition: medlink.f:58
subroutine mlnliw(fid, mname, lname, cret)
Cette routine permet d'écrire un lien dans un fichier MED.
Definition: medlink.f:21