summaryrefslogtreecommitdiff
path: root/AK/FileStream.h
AgeCommit message (Collapse)Author
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-02-08Everywhere: Remove unnecessary headers 4/4Ben Wiederhake
Arbitrarily split up to make git bisect easier. These unnecessary #include's were found by combining an automated tool (which determined likely candidates) and some brain power (which decided whether the #include is also semantically superfluous).
2020-12-30AK+ProtocolServer: Properly close download stream fd'sAnotherTest
This makes the issue of running out of openable pipes in the ProtocolServer process much less likely (but still possible).
2020-12-30AK: Add {Input,Output}FileStreamAnotherTest
Unlike the ones in LibCore, these only wrap an stdio FILE* (or an fd, which they close when destroyed).