X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Futilities.h;h=cdec1ae6074987d8adf440a7264019f5f2a71a21;hb=635de3ca55245a58f49b487798476fbc96b5e364;hp=b9ac7f1c66d771155695eb950802069c28745185;hpb=7bfd925c54662cf1f67b651559dd91f77bfe8817;p=m6w6%2Flibmemcached diff --git a/src/utilities.h b/src/utilities.h index b9ac7f1c..cdec1ae6 100644 --- a/src/utilities.h +++ b/src/utilities.h @@ -1,5 +1,18 @@ #include #include +#include "client_options.h" +#include "libmemcached_config.h" + +#if TIME_WITH_SYS_TIME +# include +# include +#else +# if HAVE_SYS_TIME_H +# include +# else +# include +# endif +#endif typedef struct memcached_programs_help_st memcached_programs_help_st; @@ -8,7 +21,6 @@ struct memcached_programs_help_st char *not_used_yet; }; -memcached_server_st *parse_opt_servers(char *server_strings); char *strdup_cleanup(const char *str); void cleanup(void); long int timedif(struct timeval a, struct timeval b); @@ -16,3 +28,4 @@ void version_command(char *command_name); void help_command(char *command_name, char *description, const struct option *long_options, memcached_programs_help_st *options); +void process_hash_option(memcached_st *memc, char *opt_hash);