From 967be9e750221ab2ab783f95df79bb26d290a45e Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:07:58 +0200 Subject: add: added projects --- 42sh/src/lexer/expansion.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 42sh/src/lexer/expansion.h (limited to '42sh/src/lexer/expansion.h') diff --git a/42sh/src/lexer/expansion.h b/42sh/src/lexer/expansion.h new file mode 100644 index 0000000..4729cb8 --- /dev/null +++ b/42sh/src/lexer/expansion.h @@ -0,0 +1,13 @@ +#ifndef EXPANSION_H +#define EXPANSION_H + +#include +#include + +#include "helper.h" + +struct string *expand_substitution(char *str, int *i, int *error, char delim); + +struct string *expand_word(struct string *word); + +#endif /* ! EXPANSION_H */ -- cgit v1.2.3