#include <sys/_types/_seek_set.h>

sys/_types/_seek_set.h

includes: sys/cdefs.h
5 macros

macroSEEK_SET

whence values for lseek(2)
#define SEEK_SET 0
set file offset to offset

macroSEEK_CUR

#define SEEK_CUR 1
set file offset to current plus offset

macroSEEK_END

#define SEEK_END 2
set file offset to EOF plus offset

macroSEEK_HOLE

#define SEEK_HOLE 3
set file offset to the start of the next hole greater than or equal to the supplied offset

macroSEEK_DATA

#define SEEK_DATA 4
set file offset to the start of the next non-hole file region greater than or equal to the supplied offset