diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-24 16:36:51 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-24 16:36:51 +0530 |
commit | 665cd823efa91f2c1d614531f199e8e990709575 (patch) | |
tree | 909acc8684973d11b23db7323dd748594629ad5e /include/lexer.h | |
parent | dbf8b45bbd40dd28f934ad23b227576ff60335cf (diff) |
(engine): split handling into separate functions
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h index 2a03cec..dc6c744 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -1,7 +1,7 @@ #ifndef __LEXER_H #define __LEXER_H -typedef enum { INCLUDE, CONTENTFOR, ENDCONTENT } directive_e; +typedef enum { INCLUDE, CONTENTFOR, ENDCONTENT, BODY } directive_e; typedef struct { unsigned int offset; |