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 | |
| parent | 711afee405b005223a8eeaa6be6cd367a31307d0 (diff) | |
Initial working version
Diffstat (limited to 'builtins')
| -rw-r--r-- | builtins/shell.c | 4 | ||||
| -rw-r--r-- | builtins/tomo.h | 1 |
2 files changed, 3 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}; diff --git a/builtins/tomo.h b/builtins/tomo.h index 68e115bb..c7814376 100644 --- a/builtins/tomo.h +++ b/builtins/tomo.h @@ -20,6 +20,7 @@ #include "macros.h" #include "memory.h" #include "nums.h" +#include "path.h" #include "pointer.h" #include "range.h" #include "shell.h" |
