From 07b0a3b2583e7b17ef477c1e57a6c35a60711847 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Sat, 23 May 2026 10:53:41 +0000 Subject: lexer: Add scanning of identifiers Signed-off-by: Chloe M. --- include/cescal/state.h | 2 ++ include/cescal/token.h | 1 + 2 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/cescal/state.h b/include/cescal/state.h index 566b5a2..3c1ad86 100644 --- a/include/cescal/state.h +++ b/include/cescal/state.h @@ -18,12 +18,14 @@ * @rb: Read buffer * @tokbuf: Token buffer * @ptrbox: Global pointer box + * @lex_putback: Lexer putback buffer */ struct cescal_state { int in_fd; struct readbuf rb; struct tokbuf tokbuf; struct ptrbox ptrbox; + char lex_putback; }; /* diff --git a/include/cescal/token.h b/include/cescal/token.h index 0be8ff0..990df77 100644 --- a/include/cescal/token.h +++ b/include/cescal/token.h @@ -32,6 +32,7 @@ struct token { tt_t type; union { char c; + char *s; }; }; -- cgit v1.2.3