#pragma once #include 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);