12 lines
315 B
C
12 lines
315 B
C
#include "internal/cli/digest_cmd.h"
|
|
|
|
#undef X
|
|
#define X(short_opt, long_opt, has_arg, handler, arg_type, desc, flags) \
|
|
{ short_opt, long_opt, has_arg, handler, arg_type, desc, flags },
|
|
|
|
const struct option_descriptor g_digest_opts[] = {
|
|
DIGEST_OPTION_LIST
|
|
{0, NULL, 0, NULL, OPT_ARG_NONE, NULL, 0}
|
|
};
|
|
|
|
#undef X
|