update: renamed some stuff in line

This commit is contained in:
Maieul BOYER 2024-10-12 18:00:45 +02:00
parent d550ffab53
commit bc3da16935
No known key found for this signature in database
6 changed files with 17 additions and 17 deletions

View file

@ -30,7 +30,7 @@ void line_edit_move_left(t_line_state *state);
void line_edit_move_right(t_line_state *state);
void line_edit_stop(t_line_state *state);
t_str linenoise(t_const_str prompt);
t_str line(t_const_str prompt);
t_str line_blocking_edit(t_fd *stdin_fd, t_fd *stdout_fd, t_const_str prompt);
bool line_history_add(t_const_str line);

View file

@ -11,7 +11,7 @@
/* ************************************************************************** */
/// This code is higly inspired by this repository/libary:
/// https://github.com/antirez/linenoise
/// https://github.com/antirez/line
#ifndef LINE_H
# define LINE_H