16 lines
231 B
C
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);
|