js8call/.svn/pristine/13/13aa707110481c892983a6cbb9889aa004e55bf8.svn-base

11 lines
384 B
Plaintext
Raw Normal View History

2018-02-08 21:28:33 -05:00
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