Clicky

Fortran Wiki
c_funloc (changes)

Skip the Navigation Links | Home Page | All Pages | Recently Revised | Authors | Feeds | Export |

Showing changes from revision #3 to #4: (追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)

Description

c_funloc(x) determines the C address of the argument.

Standard

Fortran 2003 and later

Class

Inquiry function

Syntax

(削除)

result = c_funloc(x)

(削除ここまで)
(追記)
result = c_funloc(x)
(追記ここまで)

Arguments

  • x - Interoperable function or pointer to such function.

Return value

The return value is of type c_funptr and contains the C address of the argument.

Example

module x
 use iso_c_binding
 implicit none
contains
 subroutine sub(a) bind(c)
 real(c_float) :: a
 a = sqrt(a)+5.0
 end subroutine sub
end module x
program main
 use iso_c_binding
 use x
 implicit none
 interface
 subroutine my_routine(p) bind(c,name='myC_func')
 import :: c_funptr
 type(c_funptr), intent(in) :: p
 end subroutine
 end interface
 call my_routine(c_funloc(sub))
end program main

See also

c_associated, c_loc, c_f_pointer, c_f_procpointer, iso_c_binding

category: intrinsics

Revised on April 4, 2016 12:40:51 by Jason Blevins (128.146.137.52) (1044 characters / 0.0 pages)
Edit | Back in time (3 revisions) | Hide changes | History | Views: Print | TeX | Source | Linked from: Intrinsic procedures, c_associated, c_loc, C interoperability, iso_c_binding

AltStyle によって変換されたページ (->オリジナル) /