1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

LibC: Implement __freadptr

This commit is contained in:
Tim Schumacher 2021-11-07 17:09:51 +01:00 committed by Andreas Kling
parent 8da0cf7912
commit 9b543ddb16
3 changed files with 26 additions and 0 deletions

View file

@ -61,6 +61,8 @@ public:
void reopen(int fd, int mode);
u8 const* readptr(size_t& available_size);
enum Flags : u8 {
None = 0,
LastRead = 1,