console_line #7

Merged
cromer merged 7 commits from getchar into master 2021-06-26 23:15:01 -04:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 90019c46ba - Show all commits

View File

@ -78,6 +78,7 @@ void print_input_line() {
char *hostname = get_hostname();
char *cwd = get_working_directory();
printf(BRIGHT_CYAN "%s" MAGENTA "@" RED "%s" MAGENTA ":" BLUE "%s" MAGENTA "$ " RESET, username, hostname, cwd);
free(hostname);
free(cwd);
}