mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Don't count single quote ' as garbage (#1801)
Also copy the "blank space" (space or tab) vs "whitespace" (space, tab, or newline) convention from `<ctype.h>`
This commit is contained in:
@@ -12,8 +12,9 @@
|
||||
|
||||
#include "helpers.hpp"
|
||||
|
||||
bool isWhitespace(int c);
|
||||
bool isNewline(int c);
|
||||
bool isBlankSpace(int c);
|
||||
bool isWhitespace(int c);
|
||||
bool isPrintable(int c);
|
||||
|
||||
bool startsIdentifier(int c);
|
||||
|
||||
Reference in New Issue
Block a user