| 167 | } |
| 168 | |
| 169 | int |
| 170 | argparse_init(struct argparse *this_, struct argparse_option *options, |
| 171 | const char *usage, int flags) |
| 172 | { |
| 173 | memset(this_, 0, sizeof(*this_)); |
| 174 | this_->options = options; |
| 175 | this_->usage = usage; |
| 176 | this_->flags = flags; |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | int |
| 181 | argparse_parse(struct argparse *this_, int argc, const char **argv) |