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

More coding style changes.

This commit is contained in:
Andreas Kling 2018-12-03 00:39:25 +01:00
parent d824442e3e
commit f6e27c2abe
39 changed files with 216 additions and 216 deletions

View file

@ -12,7 +12,7 @@ public:
RetainPtr<FileDescriptor> open(int options);
virtual bool hasDataAvailableForRead() const = 0;
virtual bool has_data_available_for_reading() const = 0;
virtual ssize_t read(byte* buffer, size_t bufferSize) = 0;
virtual ssize_t write(const byte* buffer, size_t bufferSize) = 0;
@ -20,7 +20,7 @@ public:
unsigned major() const { return m_major; }
unsigned minor() const { return m_minor; }
virtual bool isTTY() const { return false; }
virtual bool is_tty() const { return false; }
virtual int ioctl(Process&, unsigned request, unsigned arg);