refactor: some small stuff

This commit is contained in:
Jef Roosens 2022-12-03 13:27:34 +01:00
parent f9a5fc14e5
commit 2d89c5e80f
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
3 changed files with 10 additions and 8 deletions

View file

@ -4,6 +4,8 @@
#define ALPHABET_SIZE 256
#define DELIMITER '\0'
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
// Should not be higher than 254 or stuff will break
#define TRIE_MAX_SKIP_SIZE 8
/**