22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* line.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/07/05 18:07:02 by maiboyer #+# #+# */
|
|
/* Updated: 2024/07/10 15:28:51 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
/// This code is higly inspired by this repository/libary:
|
|
/// https://github.com/antirez/linenoise
|
|
|
|
#ifndef LINE_H
|
|
# define LINE_H
|
|
|
|
# include "line/_line_functions.h"
|
|
# include "line/_line_structs.h"
|
|
|
|
#endif /* LINE_H */
|