PatchworkOS  da8a090
A non-POSIX operating system.
Loading...
Searching...
No Matches
off_t.h
Go to the documentation of this file.
1#ifndef _AUX_OFF_T_H
2#define _AUX_OFF_T_H 1
3
4/**
5 * @brief Offset type.
6 * @ingroup libstd
7 *
8 * The `off_t` type is used to store offsets relative to some position, for example the offset specified in `seek()`.
9 *
10 */
11typedef __INT64_TYPE__ off_t;
12
13#endif
__INT64_TYPE__ off_t
Offset type.
Definition off_t.h:11