WSJT-X/lib/hashing.f90
Bill Somerville 1a23757b26 Reintegrate merge from wsjtx_exp branch.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-18 01:28:12 +00:00

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