Missing hosts file.
[m6w6/libmemcached] / src / utilities.h
index fe79781797816ddd7d85314d5c7eb96af982c366..b9ac7f1c66d771155695eb950802069c28745185 100644 (file)
@@ -1,4 +1,18 @@
 #include <memcached.h>
+#include <getopt.h>
 
-void parse_opt_servers (memcached_st *ptr,
-                        char *opt_servers);
+typedef struct memcached_programs_help_st memcached_programs_help_st;
+
+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);
+void version_command(char *command_name);
+void help_command(char *command_name, char *description,
+                  const struct option *long_options,
+                  memcached_programs_help_st *options);