blob: aef0b8daebb0b292dda098c01be116025af1ce48 [file] [log] [blame]
Nico Huber34e783a2023-02-11 00:30:27 +01001/*
2 * This file is part of the flashprog project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#ifndef FLASHPROG_CLI_H
16#define FLASHPROG_CLI_H
17
18enum {
19 OPTION_CHIP = 'c',
20 OPTION_PROGRAMMER = 'p',
21};
22
23struct flash_args {
24 char *chip;
25 char *prog_name;
26 char *prog_args;
27};
28
29int cli_parse_flash_args(struct flash_args *, int opt, const char *optarg);
30
31#endif