"Fossies" - the Fresh Open Source Software Archive

Member "detox-1.4.5/src/parse_options.h" (15 Aug 2021, 615 Bytes) of package /linux/privat/detox-1.4.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "parse_options.h" see the Fossies "Dox" file reference documentation.

    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 */