diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 00:22:12 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-09 00:22:12 -0400 |
| commit | 13a9304decb86450a2a0e9cc756da4c2d373c929 (patch) | |
| tree | 0d303738a213c0b34064aa78e7a110689277a0c4 /builtins/shell.c | |
| parent | 711afee405b005223a8eeaa6be6cd367a31307d0 (diff) | |
Initial working version
Diffstat (limited to 'builtins/shell.c')
| -rw-r--r-- | builtins/shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtins/shell.c b/builtins/shell.c index 91cf792f..5bb34e83 100644 --- a/builtins/shell.c +++ b/builtins/shell.c @@ -1,4 +1,4 @@ -// Boolean methods/type info +// A lang for Shell Command Language #include <stdbool.h> #include <stdint.h> @@ -10,7 +10,7 @@ #include "types.h" #include "util.h" -public Pattern_t Shell$escape_text(Text_t text) +public Shell_t Shell$escape_text(Text_t text) { // TODO: optimize for ASCII and short strings Array_t shell_graphemes = {.atomic=1}; |
