1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 01:29:37 +00:00
erc-c/include/option.h
2017-12-31 15:50:59 -06:00

30 lines
683 B
C

#ifndef _OPTIONS_H_
#define _OPTIONS_H_
#include <stdbool.h>
#include <stdio.h>
enum option_flags {
OPTION_FLASH = 1,
OPTION_DISASSEMBLE = 2,
};
/*
* These are the most possible number of disk inputs we can accept
*/
#define OPTION_MAX_DISKS 2
extern bool option_flag(int);
extern FILE *option_get_input(int);
extern const char *option_get_error();
extern int option_get_height();
extern int option_get_width();
extern int option_parse(int, char **);
extern int option_read_file(int, const char *);
extern int option_set_size(const char *);
extern void option_print_help();
extern void option_set_error(const char *);
extern void option_set_input(int, FILE *);
#endif