diff options
author | jani@rhols221.adsl.netsonic.fi <> | 2002-02-06 17:22:43 +0200 |
---|---|---|
committer | jani@rhols221.adsl.netsonic.fi <> | 2002-02-06 17:22:43 +0200 |
commit | d57b95b695ddc247afd46d3f348572fea20542f5 (patch) | |
tree | 9b6c7f8d4bae81a51733bc6fab5f0a3bac545c2c /include | |
parent | 21255c19cf6c4a16bc4c4779e7a5b3f1180ec3e1 (diff) | |
download | mariadb-git-d57b95b695ddc247afd46d3f348572fea20542f5.tar.gz |
Bug fixes and new functionality added in my_getopt and myisamchk
Diffstat (limited to 'include')
-rw-r--r-- | include/my_getopt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/my_getopt.h b/include/my_getopt.h index a1a052ac8e2..2e40fb8ffaa 100644 --- a/include/my_getopt.h +++ b/include/my_getopt.h @@ -42,7 +42,6 @@ struct my_option longlong sub_size; /* Subtract this from given value */ long block_size; /* Value should be a mult. of this */ int app_type; /* To be used by an application */ - my_bool opt_is_var; /* If true, the option is a variable */ }; extern int handle_options (int *argc, char ***argv, @@ -50,3 +49,5 @@ extern int handle_options (int *argc, char ***argv, my_bool (*get_one_option)(int, const struct my_option *, char *)); +extern void my_print_help(const struct my_option *options); +extern void my_print_variables(const struct my_option *options); |