/* * Keyword hashmap. * Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team. * Provided under the BSD 3-Clause license. */ #ifndef _LEXER_KEYWORDS_H #define _LEXER_KEYWORDS_H #include "lexer/token.h" token_kind_t keywords_find(struct token *tok); void keywords_init(void); #endif /* !_LEXER_KEYWORDS_H */