diff options
| author | 2024-09-09 10:22:06 -0400 | |
|---|---|---|
| committer | 2024-09-09 10:22:06 -0400 | |
| commit | 49de8d30345020c046d125c39bdf2a177b4f9e94 (patch) | |
| tree | e2c03299979ff3e455739a371088d764bb770cc5 /src/lush.h | |
| parent | added getenv and putenv to Lua API (diff) | |
added support for init.lua for configuring shell
Diffstat (limited to '')
| -rw-r--r-- | src/lush.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -37,4 +37,9 @@ char ***lush_split_args(char **commands, int *status); void lush_execute_command(char **args, int input_fd, int output_fd); int lush_execute_pipeline(char ***commands, int num_commands); +void lush_format_prompt(const char *prompt_format); + +// format spec for the prompt +extern char *prompt_format; + #endif // LUSH_H |
