From 2870751be3f8874378f1a383e6d264b87195580d Mon Sep 17 00:00:00 2001 From: BanceDev Date: Thu, 12 Sep 2024 09:13:01 -0400 Subject: added e2e testing to cover basic shell functionality --- src/lush.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lush.c') diff --git a/src/lush.c b/src/lush.c index 5b6fca1..f04d8d7 100644 --- a/src/lush.c +++ b/src/lush.c @@ -881,8 +881,7 @@ char *lush_read_line() { return buffer; } -// -- static helper for resolving aliases -- -static char *lush_resolve_aliases(char *line) { +char *lush_resolve_aliases(char *line) { // Allocate memory for the new string char *result = (char *)malloc(BUFFER_SIZE); if (!result) { -- cgit v1.2.3-59-g8ed1b