ft_ls/inc/main.h
2024-12-16 19:28:40 +01:00

16 lines
231 B
C

#pragma once
#include <inttypes.h>
typedef struct {
i64 l;
i64 a;
i64 R;
i64 r;
i64 t;
int error[2];
} flags_t;
flags_t *get_flags(char **argv);
void display_flags(flags_t flags);