aboutsummaryrefslogtreecommitdiffstats
path: root/src/lush.c
diff options
context:
space:
mode:
authorGravatar BanceDev 2024-09-12 09:13:01 -0400
committerGravatar BanceDev 2024-09-12 09:13:01 -0400
commit2870751be3f8874378f1a383e6d264b87195580d (patch)
treef4a2d13121723140cd44bebc69b01c7db48a6c21 /src/lush.c
parentupdated buffer size for date to account for compiler warning (diff)
added e2e testing to cover basic shell functionality
Diffstat (limited to 'src/lush.c')
-rw-r--r--src/lush.c3
1 files changed, 1 insertions, 2 deletions
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) {