mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
1a23757b26
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
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
|