mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
11 lines
384 B
Fortran
11 lines
384 B
Fortran
|
module hashing
|
||
|
interface
|
||
|
integer(c_int32_t) function nhash (key, length, initval) bind(C, name="nhash")
|
||
|
use iso_c_binding, only: c_ptr, c_size_t, c_int32_t
|
||
|
type(c_ptr), intent(in), value :: key
|
||
|
integer(c_size_t), intent(in), value :: length
|
||
|
integer(c_int32_t), intent(in), value :: initval
|
||
|
end function nhash
|
||
|
end interface
|
||
|
end module hashing
|