summaryrefslogtreecommitdiffstats
path: root/src/b_alias.c
blob: 08f40edb35950f487077798488d9b7c13adadc9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   b_alias.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 <stdint.h>

#include "s_struct.h"
#include "u_utils.h"

static void
	b_print_alias_list(t_msh *msh)
{
	t_lalias	*ptr;

	ptr = msh->alias;
	while (ptr != NULL)
	{
		ft_printf("alias %s='%s'\n", ptr->name, ptr->val);
		ptr = ptr->next;
	}
}

static void
	b_print_arg(const char arg[], t_msh *msh)
{
	char	*ptr;
}

uint8_t
	b_alias(char *args[], t_msh *msh)
{
	const uint64_t	argc = u_builtins_get_argc((const char**)args);
	int32_t			i;

	if (argc == 0)
	{
		b_print_alias_list(msh);
	}
	if (argc > 0)
	{
		i = 0;
		while (args[i] != NULL)
		{
			b_print_arg(args[i], msh);
			i++;
		}
	}
	return (0);
}

uint8_t
	b_alias_mute(char *args[], t_msh *msh)
{
	const uint64_t	argc = u_builtins_get_argc((const char**)args);

	(void)msh;
	if (argc > 0)
	{
	}
	return (0);
}