2022-05-03 07:40:23 +00:00
|
|
|
#pragma once
|
2022-07-26 09:42:04 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <common/printk.h>
|
2022-05-03 07:40:23 +00:00
|
|
|
|
|
|
|
|
#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
|