mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Factor out isBinDigit and parseHexDigit utility functions
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
#include <ctype.h>
|
||||
#include <numeric>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
||||
@@ -25,6 +26,8 @@ bool isAlphanumeric(int c);
|
||||
bool startsIdentifier(int c);
|
||||
bool continuesIdentifier(int c);
|
||||
|
||||
uint8_t parseHexDigit(int c);
|
||||
|
||||
char const *printChar(int c);
|
||||
|
||||
struct Uppercase {
|
||||
|
||||
Reference in New Issue
Block a user