Commit acefcb73 authored by Eric Lagergren's avatar Eric Lagergren Committed by Brad Fitzpatrick

io: define SeekStart, SeekCurrent, SeekEnd constants for use with Seeker

Fixes #6885

Change-Id: I6907958186f6a2427da1ad2f6c20bd5d7bf7a3f9
Reviewed-on: https://go-review.googlesource.com/19862Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 1747788c
......@@ -16,6 +16,13 @@ import (
"errors"
)
// Seek whence values.
const (
SeekStart = 0 // seek relative to the origin of the file
SeekCurrent = 1 // seek relative to the current offset
SeekEnd = 2 // seek relative to the end
)
// ErrShortWrite means that a write accepted fewer bytes than requested
// but failed to return an explicit error.
var ErrShortWrite = errors.New("short write")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment