Huge refactoring of directory structure.
[awesomized/libmemcached] / clients / utilities.h
diff --git a/clients/utilities.h b/clients/utilities.h
new file mode 100644 (file)
index 0000000..6d4d72d
--- /dev/null
@@ -0,0 +1,32 @@
+#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;
+
+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);
+void process_hash_option(memcached_st *memc, char *opt_hash);