1 /** 2 * This file is part of the Detox package. 3 * 4 * Copyright (c) Doug Harple <detox.dharple@gmail.com> 5 * 6 * For the full copyright and license information, please view the LICENSE 7 * file that was distributed with this source code. 8 * 9 */ 10 11 #ifndef __PARSE_OPTIONS_H 12 #define __PARSE_OPTIONS_H 13 14 #include "detox.h" 15 16 extern char usage_message[]; 17 extern char help_message[]; 18 19 extern char usage_message_inline[]; 20 extern char help_message_inline[]; 21 22 extern struct detox_options *initialize_main_options(void); 23 extern struct detox_options *parse_options_getopt(int argc, char **argv); 24 25 #endif /* __PARSE_OPTIONS_H */