my_getopt.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:2k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. C_MODE_START
  14. enum get_opt_var_type { GET_NO_ARG, GET_BOOL, GET_INT, GET_UINT, GET_LONG,
  15. GET_ULONG, GET_LL, GET_ULL, GET_STR, GET_STR_ALLOC };
  16. enum get_opt_arg_type { NO_ARG, OPT_ARG, REQUIRED_ARG };
  17. struct my_option
  18. {
  19.   const char *name;                     /* Name of the option */
  20.   int        id;                        /* unique id or short option */
  21.   const char *comment;                  /* option comment, for autom. --help */
  22.   gptr       *value;                    /* The variable value */
  23.   gptr       *u_max_value;              /* The user def. max variable value */
  24.   const char **str_values;              /* Pointer to possible values */
  25.   enum get_opt_var_type var_type;
  26.   enum get_opt_arg_type arg_type;
  27.   longlong   def_value;                 /* Default value */
  28.   longlong   min_value;                 /* Min allowed value */
  29.   longlong   max_value;                 /* Max allowed value */
  30.   longlong   sub_size;                  /* Subtract this from given value */
  31.   long       block_size;                /* Value should be a mult. of this */
  32.   int        app_type;                  /* To be used by an application */
  33. };
  34. extern char *disabled_my_option;
  35. extern my_bool my_getopt_print_errors;
  36. extern int handle_options (int *argc, char ***argv, 
  37.    const struct my_option *longopts, 
  38.    my_bool (*get_one_option)(int,
  39.      const struct my_option *,
  40.      char *));
  41. extern void my_print_help(const struct my_option *options);
  42. extern void my_print_variables(const struct my_option *options);
  43. ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp);
  44. my_bool getopt_compare_strings(const char *s, const char *t, uint length);
  45. C_MODE_END