#include "implicit_f.inc"
Go to the source code of this file.
◆ hm_set_floatv()
| subroutine hm_set_floatv |
( |
character*50, intent(in) | name, |
|
|
intent(in) | rval ) |
Definition at line 30 of file hm_set_floatv.F.
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
49 use, INTRINSIC :: iso_c_binding, only: c_bool
50
51
52
53
54#include "implicit_f.inc"
55
56
57
58
59 CHARACTER*50,INTENT(IN)::NAME
61 . INTENT(IN)::rval
62
63
64
65 LOGICAL(KIND=C_BOOL) :: C_IS_AVAILABLE
66 DOUBLE PRECISION DVAL
67
68
69
70 dval = rval
71 CALL cpp_set_floatv(name(1:len_trim(name)),len_trim(name),dval,c_is_available)
72
73 RETURN
74