#include "implicit_f.inc"
Go to the source code of this file.
◆ hm_group_is_used()
| subroutine hm_group_is_used |
( |
character*(sname), intent(in) | name, |
|
|
integer, intent(in) | sname, |
|
|
integer, intent(in) | id, |
|
|
logical, intent(out) | is_used ) |
Definition at line 32 of file hm_group_is_used.F.
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 use, INTRINSIC :: iso_c_binding, only: c_bool
55
56
57
58#include "implicit_f.inc"
59
60
61
62
63 INTEGER,INTENT(IN)::SNAME,ID
64 CHARACTER*(SNAME),INTENT(IN)::NAME
65 LOGICAL,INTENT(OUT)::IS_USED
66
67
68
69 LOGICAL(KIND=C_BOOL) C_IS_USED
70
71 CALL cpp_group_is_used(name(1:len_trim(name)),len_trim(name),
id,c_is_used)
72 is_used = c_is_used
73 RETURN
74