#ifndef SUBCOMMAND_H #define SUBCOMMAND_H typedef struct { char *name; void (*func)(); bool admin_only; } SUBCOMMAND; #endif /* SUBCOMMAND_H */