#ifndef __SCC_ARGPARSE_H__ #define __SCC_ARGPARSE_H__ #include "optparse.h" typedef enum { SCC_ARGPARSE_ERROR_NONE, } scc_argparse_error_t; typedef struct { } scc_argparse_cmd_t; typedef struct { } scc_argparse_arg_t; typedef struct { const char *name; const char *description; const char *epilog; const char *usage; const char *help; scc_optparse_t optparse; int usage_margin; int usage_max_width; int help_vertical_space; int help_usage_margin; int help_description_margin; int help_max_width; } scc_argparse_t; #endif /* __SCC_ARGPARSE_H__ */