X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Futilities.h;h=6d4d72d444419d38073ac6233bd6ce198ebec19f;hb=2c213592852ceb196be1b1760d17284150fc0678;hp=777c7765af2443fcc05bc5543b10606836072883;hpb=151506dd4b5da014f23438226ee286772a78dfd3;p=awesomized%2Flibmemcached diff --git a/src/utilities.h b/src/utilities.h index 777c7765..6d4d72d4 100644 --- a/src/utilities.h +++ b/src/utilities.h @@ -1,7 +1,32 @@ #include +#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; + +struct memcached_programs_help_st +{ + char *not_used_yet; +}; -void parse_opt_servers (memcached_st *ptr, - char *opt_servers); char *strdup_cleanup(const char *str); void cleanup(void); long int timedif(struct timeval a, struct timeval b); +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);