23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* expander.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/02/18 19:00:51 by qmennen #+# #+# */
|
|
/* Updated: 2025/02/18 20:40:04 by qmennen ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef EXPANDER_H
|
|
# define EXPANDER_H
|
|
|
|
#include "minishell.h"
|
|
|
|
|
|
size_t expander_count_vars(const char *s);
|
|
char *expander_parse_string(char *s, t_minishell *minishell);
|
|
|
|
#endif
|