C-------------------------------------------------------------------------- subroutine ftgbyo(iunit,gsize,ngroup,offset,array,status) C "Get BYtes with Offsets" C read bytes from the character buffer. C iunit i Fortran output unit number C gsize i size of each group of bytes C ngroup i number of groups to read C offset i size of gap between groups C array i output array of bytes C status i output error status (0 = ok) C C written by Wm Pence, HEASARC/GSFC, Dec 1996 integer iunit,gsize,ngroup,offset,status integer array(*) C simply call character reading routine: call ftgcbo(iunit,gsize,ngroup,offset,array,status) end