This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/source/io/fseek.cpp

11 lines
218 B
C++

#include <cstdio>
namespace std {
int fseek(FILE *stream, long offset, int origin) {
if (origin < 0 || origin > 2)
return 1;
return stream->try_seek((__euler_seek_from)origin, offset) ? 0 : 2;
}
}