summaryrefslogtreecommitdiffstats
path: root/src/ft_b_echo.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 22:08:57 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 22:08:57 +0200
commitf69fcbeda40d450b52dfe65d7259ca64799f459d (patch)
tree03b6cbef3af93b420b614b65b2a2a54ca63806f9 /src/ft_b_echo.c
parentGood work so far (diff)
download42-minishell-f69fcbeda40d450b52dfe65d7259ca64799f459d.tar.gz
42-minishell-f69fcbeda40d450b52dfe65d7259ca64799f459d.tar.bz2
42-minishell-f69fcbeda40d450b52dfe65d7259ca64799f459d.tar.xz
42-minishell-f69fcbeda40d450b52dfe65d7259ca64799f459d.tar.zst
42-minishell-f69fcbeda40d450b52dfe65d7259ca64799f459d.zip
Nice
Diffstat (limited to '')
-rw-r--r--src/ft_b_echo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ft_b_echo.c b/src/ft_b_echo.c
index c50bd8b..fdac868 100644
--- a/src/ft_b_echo.c
+++ b/src/ft_b_echo.c
@@ -12,14 +12,15 @@
#include <libft.h>
#include <stdint.h>
+
#include "ft_s_struct.h"
#include "ft_u_utils.h"
-/* TODO: norme, echo $variables, echo "quoted text", echo 'quoted text', */
+/* TODO: norme, echo $variables (variables are subst when parsing the line), */
+/* echo "quoted text", echo 'quoted text', */
/* echo kill\nbackslash\nbut\nnot\nn, echo "quoted\nnew\nlines" */
/* Might need to go full buffer */
-
uint8_t
ft_b_echo(char *args[],
t_msh *msh)