mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
21 lines
1.1 KiB
C
21 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cmd_debug.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/04/09 16:51:17 by khais #+# #+# */
|
|
/* Updated: 2025/04/17 12:24:58 by khais ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CMD_DEBUG_H
|
|
# define CMD_DEBUG_H
|
|
|
|
# include "../../minishell.h"
|
|
|
|
void cmd_debug(t_cmd *cmd, t_buffer *leader, bool is_last);
|
|
void cmd_root_debug(t_cmd *cmd);
|
|
|
|
#endif // CMD_DEBUG_H
|