#include "implicit_f.inc"
Go to the source code of this file.
◆ hm_set_intv()
| subroutine hm_set_intv |
( |
character*50, intent(in) | name, |
|
|
integer, intent(in) | ival ) |
Definition at line 30 of file hm_set_intv.F.
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46 use, INTRINSIC :: iso_c_binding, only: c_bool
49
50
51
52#include "implicit_f.inc"
53
54
55
56
57 CHARACTER*50,INTENT(IN)::NAME
58 INTEGER,INTENT(IN)::IVAL
59
60
61
62 LOGICAL(KIND=C_BOOL) C_IS_AVAILABLE
63
64 CALL cpp_set_intv(name(1:len_trim(name)),len_trim(name),ival,c_is_available)
65
66 RETURN
67