X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Futilities.h;h=1fba99bf72f7808d20d8b3e95a6118d81eabb272;hb=03aebaf09b3ff6bb719798f451b5edf07307e46f;hp=fe79781797816ddd7d85314d5c7eb96af982c366;hpb=6030db2543337976c1df861272ce90b25ef83820;p=m6w6%2Flibmemcached diff --git a/src/utilities.h b/src/utilities.h index fe797817..1fba99bf 100644 --- a/src/utilities.h +++ b/src/utilities.h @@ -1,4 +1,30 @@ #include +#include +#include "client_options.h" +#include "libmemcached_config.h" -void parse_opt_servers (memcached_st *ptr, - char *opt_servers); +#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; +}; + +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);