ft_prompt uses ft_printf not printf
This commit is contained in:
parent
6bfd442e82
commit
0b608c0b94
3 changed files with 10 additions and 10 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2017/02/17 15:38:14 by jhalford #+# #+# */
|
/* Created: 2017/02/17 15:38:14 by jhalford #+# #+# */
|
||||||
/* Updated: 2017/02/24 22:05:04 by ariard ### ########.fr */
|
/* Updated: 2017/03/15 18:12:49 by jhalford ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
@ -20,10 +20,10 @@ void esc_print(char *str, unsigned char *esc)
|
||||||
while (*cur)
|
while (*cur)
|
||||||
{
|
{
|
||||||
if (is_char_esc(esc, str, cur))
|
if (is_char_esc(esc, str, cur))
|
||||||
printf("\\%c", *cur);
|
ft_printf("\\%c", *cur);
|
||||||
else
|
else
|
||||||
printf("%c", *cur);
|
ft_printf("%c", *cur);
|
||||||
++cur;
|
++cur;
|
||||||
}
|
}
|
||||||
printf("\n");
|
ft_printf("\n");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2016/12/15 11:49:05 by jhalford #+# #+# */
|
/* Created: 2016/12/15 11:49:05 by jhalford #+# #+# */
|
||||||
/* Updated: 2017/03/15 18:11:50 by jhalford ### ########.fr */
|
/* Updated: 2017/03/15 18:12:30 by jhalford ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: gwojda <gwojda@student.42.fr> +#+ +:+ +#+ */
|
/* By: gwojda <gwojda@student.42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2016/12/13 13:51:33 by gwojda #+# #+# */
|
/* Created: 2016/12/13 13:51:33 by gwojda #+# #+# */
|
||||||
/* Updated: 2017/03/15 13:55:22 by gwojda ### ########.fr */
|
/* Updated: 2017/03/15 18:14:57 by jhalford ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
@ -27,10 +27,10 @@ static int promt_git_status(int fd)
|
||||||
free(tmp);
|
free(tmp);
|
||||||
ft_printf("\x1b[38;5;47mgit:(\x1b[38;5;203m%s\x1b[38;5;47m)", line);
|
ft_printf("\x1b[38;5;47mgit:(\x1b[38;5;203m%s\x1b[38;5;47m)", line);
|
||||||
if (!get_next_line(fd, &tmp))
|
if (!get_next_line(fd, &tmp))
|
||||||
printf("\x1b[38;5;83m %C ", L'✓');
|
ft_printf("\x1b[38;5;83m ✓ ");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("\x1b[38;5;1m %C ", L'✗');
|
ft_printf("\x1b[38;5;1m ✗ ");
|
||||||
free(tmp);
|
free(tmp);
|
||||||
}
|
}
|
||||||
while (get_next_line(fd, &tmp))
|
while (get_next_line(fd, &tmp))
|
||||||
|
|
@ -101,9 +101,9 @@ void ft_prompt(void)
|
||||||
do_job_notification();
|
do_job_notification();
|
||||||
if (ft_getenv(data_singleton()->env, "?") &&
|
if (ft_getenv(data_singleton()->env, "?") &&
|
||||||
ft_atoi(ft_getenv(data_singleton()->env, "?")))
|
ft_atoi(ft_getenv(data_singleton()->env, "?")))
|
||||||
printf("\x1b[38;5;1m%C ", L'➜');
|
ft_printf("\x1b[38;5;1m➜ ");
|
||||||
else
|
else
|
||||||
printf("\x1b[38;5;10m%C ", L'➜');
|
ft_printf("\x1b[38;5;10m➜ ");
|
||||||
fflush(NULL);
|
fflush(NULL);
|
||||||
ft_putstr("\x1b[38;5;361m");
|
ft_putstr("\x1b[38;5;361m");
|
||||||
ret += ft_currend_dir();
|
ret += ft_currend_dir();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue