Remove unneeded method

This commit is contained in:
2024-10-07 22:20:41 -04:00
parent 6ea396a974
commit 64f9d10b4c
3 changed files with 12 additions and 25 deletions
-2
View File
@@ -12,8 +12,6 @@ typedef struct CommandBuf {
/* Try to consume a string literal. */
bool cmd_match_str(CommandBuf *cmd, const char *str);
/* Try to consume a string literal, if it is the only thing left in the buffer. */
bool cmd_match_only_str(CommandBuf *cmd, const char *str);
/* Try to consume a base-16 number, and return the value. */
bool cmd_match_hex_number(CommandBuf *cmd, uint32_t *value);
/* Try to consume a hex-encoded list of bytes, and return the value. */