-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
61 lines (57 loc) · 1.92 KB
/
main.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alhelson <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/10 20:36:30 by alhelson #+# #+# */
/* Updated: 2016/12/11 20:34:56 by alhelson ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_ori.h"
#include "ft_stat.h"
#include "ft_display.h"
#include "ft_1d_int.h"
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include "ft_flag.h"
#include "ft_manage.h"
#include <time.h>
#include "ft_1d_int.h"
static int ft_basic_ls(int argc, int first_arg, char flag)
{
if (argc == 1 || argc == first_arg)
{
ft_ls(flag, ".");
return (1);
}
return (0);
}
int main(int argc, char **argv)
{
char flag;
int first_arg;
t_1d_int *tab;
int tmp;
if ((flag = ft_manage_flag(argc, argv)) == 1)
return (1);
first_arg = ft_found_first_name_file(argc, argv);
if (ft_basic_ls(argc, first_arg, flag))
return (0);
first_arg = ft_found_first_name_file(argc, argv);
ft_sorted_tab(argc, argv, first_arg);
tab = ft_affect_data_at_table(argc, argv, first_arg);
ft_display_error_file(argv, first_arg, tab);
ft_display_basic_file_argv(argv, tab, first_arg, flag);
tmp = 0;
while (tmp + first_arg < argc)
{
if (tab->tab[tmp] >= 4)
ft_ls(flag, ft_strdup(argv[first_arg + tmp]));
tmp++;
}
ft_1d_int_destruct(&tab);
return (1);
}