blob: 7da7dc1880070f748e7e299a9974ca8adda9eb79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* 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 */
|