b9ac7f1c66d771155695eb950802069c28745185
[awesomized/libmemcached] / src / utilities.h
1 #include <memcached.h>
2 #include <getopt.h>
3
4 typedef struct memcached_programs_help_st memcached_programs_help_st;
5
6 struct memcached_programs_help_st
7 {
8 char *not_used_yet;
9 };
10
11 memcached_server_st *parse_opt_servers(char *server_strings);
12 char *strdup_cleanup(const char *str);
13 void cleanup(void);
14 long int timedif(struct timeval a, struct timeval b);
15 void version_command(char *command_name);
16 void help_command(char *command_name, char *description,
17 const struct option *long_options,
18 memcached_programs_help_st *options);