std::streamoff

Header: <ios>

The type std::streamoff is an implementation-defined signed integral(since C++11) type of sufficient size to represent the maximum possible file size supported by the operating system. Typically, this is an alias for long long.(since C++11)

# Declarations

typedef /*implementation-defined*/ streamoff;

# See also