Found bug in multi get where key size was not being calculated.
[m6w6/libmemcached] / src / utilities.h
index 7d442f23661c0a9627224c9735951f7db68c2335..5a1b916dbcb24b2853c6d36287be24abf8956b1a 100644 (file)
@@ -1,6 +1,17 @@
 #include <memcached.h>
+#include <getopt.h>
+
+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);