mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
1f41a36c52
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();
|
|
|