/usr/include/gmerlin/cmdline.h is in libgmerlin-dev 1.2.0~dfsg+1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | /*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2011 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
/* Automatic generation of user documentation */
typedef enum
{
BG_HELP_FORMAT_PLAIN,
BG_HELP_FORMAT_TERM,
BG_HELP_FORMAT_MAN,
BG_HELP_FORMAT_TEXI,
} bg_help_format_t;
/*
* Remove the nth arg from an argc/argv pair
*/
void bg_cmdline_remove_arg(int * argc, char *** argv, int arg);
/* cmdline options */
typedef struct
{
char * arg;
char * help_arg; /* Something like <file> */
char * help_string;
/* Callback will be called if present */
void (*callback)(void * data, int * argc, char *** argv, int arg);
/* Parameter interface */
const bg_parameter_info_t * parameters;
int param_single;
} bg_cmdline_arg_t;
typedef struct
{
char * name;
bg_cmdline_arg_t * args;
} bg_cmdline_arg_array_t;
typedef struct
{
char * name;
char * desc;
} bg_cmdline_ext_doc_t;
typedef struct
{
char * package;
char * version;
char * name;
char * synopsis;
char * help_before;
const bg_cmdline_arg_array_t * args; /* Null terminated */
const bg_cmdline_ext_doc_t * env;
const bg_cmdline_ext_doc_t * files;
char * help_after;
} bg_cmdline_app_data_t;
void bg_cmdline_init(const bg_cmdline_app_data_t * app_data);
void bg_cmdline_parse(bg_cmdline_arg_t *,
int * argc, char *** argv, void * callback_data);
char ** bg_cmdline_get_locations_from_args(int * argc, char *** argv);
void bg_cmdline_print_help(char * argv0, bg_help_format_t);
/* Commandline -> Config registry and parameters */
void bg_cmdline_print_help_parameters(const bg_parameter_info_t * parameters,
bg_help_format_t);
int bg_cmdline_apply_options(bg_cfg_section_t * section,
bg_set_parameter_func_t set_parameter,
void * data,
const bg_parameter_info_t * parameters,
const char * option_string);
void bg_cmdline_print_version(const char * application);
|