mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
This allows me to keep prototyping things on a random desktop machine, even if that machine has its own ideas about foo_t types.
10 lines
196 B
C++
10 lines
196 B
C++
#pragma once
|
|
|
|
#include <limits>
|
|
#include "UnixTypes.h"
|
|
|
|
static const Unix::size_t GoodBufferSize = 4096;
|
|
|
|
inline static const Unix::off_t maxFileOffset = std::numeric_limits<Unix::off_t>::max();
|
|
|