Files
stfs/pkg/hardware/tell.go
2022-01-16 23:50:47 +01:00

8 lines
170 B
Go

package hardware
import "github.com/pojntfx/stfs/pkg/config"
func Tell(mt config.MagneticTapeIO, fd uintptr) (int64, error) {
return mt.GetCurrentRecordFromTape(fd)
}