MOS Source Code
Loading...
Searching...
No Matches
io_types.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-3.0-or-later
2
3#pragma once
4
5typedef enum
6{
7 IO_SEEK_CURRENT = 1, // set to the current offset + the given value
8 IO_SEEK_END = 2, // set to the end of the file + the given value
9 IO_SEEK_SET = 3, // set to the given value
io_seek_whence_t
Definition io_types.h:6
@ IO_SEEK_DATA
Definition io_types.h:10
@ IO_SEEK_SET
Definition io_types.h:9
@ IO_SEEK_CURRENT
Definition io_types.h:7
@ IO_SEEK_HOLE
Definition io_types.h:11
@ IO_SEEK_END
Definition io_types.h:8