summaryrefslogtreecommitdiffstats
path: root/src/ft_b_echo.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 18:55:07 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 18:55:07 +0200
commit487a66394061f2d14a2fa421302966b5442d643f (patch)
tree34237d4e9cb85f94bcefd46f399d2224dff3f6b3 /src/ft_b_echo.c
parentCorrect shell prompt (diff)
download42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.gz
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.bz2
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.xz
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.zst
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.zip
I couldn't see shit
Diffstat (limited to 'src/ft_b_echo.c')
-rw-r--r--src/ft_b_echo.c116
1 files changed, 0 insertions, 116 deletions
diff --git a/src/ft_b_echo.c b/src/ft_b_echo.c
deleted file mode 100644
index de5431f..0000000
--- a/src/ft_b_echo.c
+++ /dev/null
@@ -1,116 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_b_echo.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
-/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
-/* */
-/* ************************************************************************** */
-
-#include <libft.h>
-#include <stdint.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "ft_s_struct.h"
-#include "ft_u_utils.h"
-
-/* TODO: echo "quoted text", echo 'quoted text', done*/
-/* echo kill\nbackslash\nbut\nnot\nn, echo "quoted\nnew\nlines", done */
-/* full buffer */
-
-void
- ft_e_put(char *str,
- uint8_t op)
-{
- size_t i;
-
- i = -1;
- if (op == 0)
- while (str[++i])
- {
- if (str[i] == '\\')
- i++;
- ft_putchar(str[i]);
- }
-}
-
-char
- *ft_e_initb(char *ptr[],
- char *str)
-{
- size_t len;
- uint8_t i;
-
- len = 0;
- i = -1;
- while (ptr[++i])
- {
- len += ft_strlen(ptr[i]);
- }
- if (!(str = (char*)malloc(len * sizeof(char))))
- return (NULL);
- return (str);
-}
-
-/***********************************************/
-/* void */
-/* ft_e_fill(char *ptr[], char **str) */
-/* { */
-/* char *bs; */
-/* */
-/* ft_sprintf(*str, "%s", *ptr); */
-/* if (*str[0] == '\"' || *str[0] == '\'') */
-/* { */
-/* *str = ft_strtrim(*str, "\"\'"); */
-/* ft_printf("%s", *str); */
-/* } */
-/* else if ((bs = ft_strrchr(*str, '\\'))) */
-/* { */
-/* ft_e_put(*str, 0); */
-/* } */
-/* else */
-/* ft_printf("%s", *str); */
-/* } */
-/***********************************************/
-
-uint8_t
- ft_b_echo(char *args[],
- t_msh *msh)
-{
- const uint64_t argc = ft_get_argc((const char **)args);
- char **ptr;
- char *str;
- int8_t nopt;
-
- (void)msh;
- ptr = args;
- nopt = 0;
- str = NULL;
- str = ft_e_initb(ptr, str);
- if (argc >= 1)
- {
- if (ft_strncmp(ptr[0], "-n", 2) == 0)
- {
- nopt = 1;
- ptr += 1;
- }
- if (argc - nopt >= 1)
- {
- ft_printf("%s", *ptr);
- ptr++;
- while (*ptr)
- {
- ft_printf(" %s", *ptr);
- ptr++;
- }
- }
- }
- free(str);
- if (nopt == 0)
- ft_printf("\n");
- return (0);
-}