fix: TODO and FIXME in the files

This commit is contained in:
mcolonna 2024-06-25 15:45:27 +02:00
parent 79405df39d
commit 446a7655b6
3 changed files with 6 additions and 10 deletions

View file

@ -6,14 +6,14 @@
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/18 13:41:32 by mcolonna #+# #+# */
/* Updated: 2024/06/18 13:43:42 by mcolonna ### ########.fr */
/* Updated: 2024/06/25 15:42:54 by mcolonna ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef COOL_READLINE_H
# define COOL_READLINE_H
// Same than readline, but (TODO)
// Same than readline, but do not echo control characters like '^C'
char *cool_readline(const char *prompt);
#endif

View file

@ -6,7 +6,7 @@
/* By: jschaft <cecile.schaft@orange.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/23 14:15:12 by mcolonna #+# #+# */
/* Updated: 2024/06/21 16:22:20 by mcolonna ### ########.fr */
/* Updated: 2024/06/25 15:43:15 by mcolonna ### ########.fr */
/* */
/* ************************************************************************** */
@ -50,7 +50,6 @@ typedef struct s_pipes
// If error, return a t_command wth the value .error = true.
t_command parse_command(t_env *env, const char *command);
// TODO reorganize
const char *variables_get(t_list *variables, const char *name);
#endif