diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-22 11:37:28 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-06-22 11:37:28 +0530 |
commit | 751068c825d4eef93aab6f8c708fe0f64cf27323 (patch) | |
tree | d5aaf252aee2da09119e5802e38ef7e87d42a283 /src/engine.c | |
parent | ea43c3a535f964067f5a20dec867bc366c155ae7 (diff) |
(lexer,engine): add support for parsing contentfor
Diffstat (limited to 'src/engine.c')
-rw-r--r-- | src/engine.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine.c b/src/engine.c index c78f6b3..1cb3ae7 100644 --- a/src/engine.c +++ b/src/engine.c @@ -60,10 +60,15 @@ ingest(char **buffer) contentfor_operands_t *operand = (contentfor_operands_t *) directive->operands; printf("CONTENTFOR: %s\n", operand->key); + printf("CONTENT: %s\n", operand->content); return; break; } + + /* NOTE: This will never occur */ + case ENDCONTENT: + break; } if (directive != NULL) |