mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* treedrawing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/03/18 12:24:25 by khais #+# #+# */
|
|
/* Updated: 2025/03/18 12:28:54 by khais ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TREEDRAWING_H
|
|
# define TREEDRAWING_H
|
|
|
|
# define CROSS " ├─"
|
|
# define CORNER " ╰─"
|
|
# define VERTICAL " │ "
|
|
# define SPACE " "
|
|
# define TREEDRAW_LENGTH 3
|
|
|
|
#endif // TREEDRAWING_H
|