1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibPDF: Add Reader::consume_non_eol_whitespace()

This commit is contained in:
Nico Weber 2024-01-03 17:28:46 -05:00 committed by Andreas Kling
parent c59e08123b
commit efb37f7252
2 changed files with 24 additions and 1 deletions

View file

@ -133,15 +133,18 @@ public:
static bool is_eol(char);
static bool is_whitespace(char);
static bool is_non_eol_whitespace(char);
bool matches_eol() const;
bool matches_whitespace() const;
bool matches_non_eol_whitespace() const;
bool matches_number() const;
bool matches_delimiter() const;
bool matches_regular_character() const;
bool consume_eol();
bool consume_whitespace();
bool consume_non_eol_whitespace();
char consume();
void consume(int amount);
bool consume(char);