-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt.c
44 lines (38 loc) · 1.32 KB
/
prompt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* prompt.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: acollin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/06 20:38:28 by acollin #+# #+# */
/* Updated: 2021/10/09 12:01:13 by acollin ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
char *concatenate_prompt(char *name, char *end)
{
char *prompt;
prompt = variadic_strjoin(
5,
ESC_BOLD_PURPLE,
name,
ESC_BOLD_RED,
end,
ESC_RESET_COLOR);
free(name);
free(end);
return (prompt);
}
char *create_name(void)
{
return (ft_strdup("Minichill \U0001f3c4:"));
}
char *create_prompt(void)
{
char *name;
char *end;
name = create_name();
end = ft_strdup("$ ");
return (concatenate_prompt(name, end));
}