ft_ls/inc/main.h
2024-12-17 09:18:58 +01:00

16 lines
235 B
C

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