added comment parsing

This commit is contained in:
Lorenzo Torres 2025-11-30 16:06:32 +01:00
parent c0f1b74a48
commit 038930d881
2 changed files with 17 additions and 2 deletions

View file

@ -71,7 +71,11 @@ typedef enum {
TOKEN_STATIC,
TOKEN_CONST,
TOKEN_EXTERN,
TOKEN_VOLATILE
TOKEN_VOLATILE,
TOKEN_STRUCT,
TOKEN_ENUM,
TOKEN_UNION
} token_type;
typedef struct _token {