Sha256: e54bb69a1738da8946f45edbc7cd91c0cf69fbc5cc89ddd3e15e337a6ab1b60e
Contents?: true
Size: 1.05 KB
Versions: 27
Compression:
Stored size: 1.05 KB
Contents
#include <getopt.h> #include <libmemcached/memcached.h> #include "client_options.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 #ifdef __sun /* For some odd reason the option struct on solaris defines the argument * as char* and not const char* */ #define OPTIONSTRING char* #else #define OPTIONSTRING const char* #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(const char *command_name); void help_command(const char *command_name, const char *description, const struct option *long_options, memcached_programs_help_st *options); void process_hash_option(memcached_st *memc, char *opt_hash); bool initialize_sasl(memcached_st *memc, char *user, char *password); void shutdown_sasl(void);
Version data entries
27 entries across 27 versions & 4 rubygems