mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 11:16:47 +00:00
8 lines
203 B
C
8 lines
203 B
C
#pragma once
|
|
|
|
#define SEEK_SET 0 /* Seek relative to start-of-file */
|
|
#define SEEK_CUR 1 /* Seek relative to current position */
|
|
#define SEEK_END 2 /* Seek relative to end-of-file */
|
|
|
|
#define SEEK_MAX 3
|