Kevin's patch bug13
[m6w6/libmemcached] / src / utilities.h
index 5a1b916dbcb24b2853c6d36287be24abf8956b1a..6d4d72d444419d38073ac6233bd6ce198ebec19f 100644 (file)
@@ -1,5 +1,19 @@
 #include <memcached.h>
 #include <getopt.h>
+#include <assert.h>
+#include "client_options.h"
+#include "libmemcached_config.h"
+
+#if TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
 
 typedef struct memcached_programs_help_st memcached_programs_help_st;
 
@@ -15,3 +29,4 @@ 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);