The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
841 B
33 lines
841 B
7 years ago
|
module gzip
|
||
|
|
||
|
interface
|
||
|
function gzopen(path, mode) bind(C)
|
||
|
use iso_c_binding, only: c_char, c_ptr
|
||
|
implicit none
|
||
|
character(c_char), intent(in) :: path(*), mode(*)
|
||
|
type(c_ptr) :: gzopen
|
||
|
end function gzopen
|
||
|
end interface
|
||
|
|
||
|
interface
|
||
|
function gzwrite(file, buf, len) bind(C)
|
||
|
use iso_c_binding, only: c_int, c_ptr
|
||
|
implicit none
|
||
|
type(c_ptr), value, intent(in) :: file
|
||
|
type(*), intent(in) :: buf
|
||
|
integer(c_int), value, intent(in) :: len
|
||
|
integer(c_int) :: gzwrite
|
||
|
end function gzwrite
|
||
|
end interface
|
||
|
|
||
|
interface
|
||
|
function gzclose(file) bind(C)
|
||
|
use iso_c_binding, only: c_int, c_ptr
|
||
|
implicit none
|
||
|
type(c_ptr), value, intent(in) :: file
|
||
|
integer(c_int) :: gzclose
|
||
|
end function gzclose
|
||
|
end interface
|
||
|
|
||
|
end module gzip
|