3.3 KiB
3.3 KiB
██╗ ██╗██████╗ ██╗ ██╗██████╗ ██╗ ██████╗ ██████╗
██║ ██║╚════██╗╚██╗██╔╝██╔══██╗██║ ██╔═══██╗██╔══██╗
███████║ █████╔╝ ╚███╔╝ ██████╔╝██║ ██║ ██║██████╔╝
██╔══██║ ╚═══██╗ ██╔██╗ ██╔═══╝ ██║ ██║ ██║██╔══██╗
██║ ██║██████╔╝██╔╝ ██╗██║ ███████╗╚██████╔╝██║ ██║
╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝
> whoami
typedef struct {
char *alias;
char *role;
char *focus[1];
bool always_learning;
} Wizard;
Wizard me = {
.alias = "H3XploR",
.role = "CS Student · Reverse Engineering",
.focus = {
"Reverse Engineering (x86/x64)"
},
.always_learning = true
};