Extended tests so that memcached starts up its own tests
[awesomized/libmemcached] / src / utilities.h
index 777c7765af2443fcc05bc5543b10606836072883..857f78039694409d8f64dd2dd84ad7e7842b82f8 100644 (file)
@@ -1,7 +1,18 @@
 #include <memcached.h>
+#include <getopt.h>
+#include "client_options.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);