1
0
Fork 0
mirror of https://github.com/pygos/pkg-utils.git synced 2024-05-06 06:26:15 +02:00
pkg-utils/main/command.h
David Oberhollenzer aa6bbf2ef4 Move pkg-tool internal headers out of global include directory
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-04-05 12:36:47 +02:00

33 lines
801 B
C

/* SPDX-License-Identifier: ISC */
#ifndef COMMAND_H
#define COMMAND_H
typedef struct command_t {
struct command_t *next;
const char *cmd; /* command name */
const char *usage; /* list of possible arguments */
const char *s_desc; /* short description used by help */
const char *l_desc; /* long description used by help */
int (*run_cmd)(int argc, char **argv);
} command_t;
void command_register(command_t *cmd);
command_t *command_by_name(const char *name);
void __attribute__((noreturn)) usage(int status);
void tell_read_help(const char *cmd);
int check_arguments(const char *cmd, int argc, int minc, int maxc);
#define REGISTER_COMMAND(cmd) \
static void __attribute__((constructor)) register_##cmd(void) \
{ \
command_register((command_t *)&cmd); \
}
#endif /* COMMAND_H */