aboutsummaryrefslogtreecommitdiff
path: root/smash/parser.h
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2022-12-14 22:12:20 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2022-12-14 22:12:20 +0100
commit7536d000ac9a5188378f2749ecfd7f0ccb437573 (patch)
treee19b0da62b826dd9c6a7b0425ac3ec568a0fe434 /smash/parser.h
parentd179f1846f9372920ef02f08cfb4d3abe99b383f (diff)
first try to pipe stuff
Diffstat (limited to 'smash/parser.h')
-rw-r--r--smash/parser.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/smash/parser.h b/smash/parser.h
index 9c23e0f..23eee88 100644
--- a/smash/parser.h
+++ b/smash/parser.h
@@ -3,13 +3,8 @@
#include "../lib/sys/sizes.h"
-typedef struct {
- const char *head;
- const char **args;
-} expression_t;
-
typedef struct expression_list_t__ {
- expression_t expression;
+ char *call;
struct expression_list_t__ *next;
} expression_list_t;