summaryrefslogtreecommitdiff
path: root/clients/client_options.h
diff options
context:
space:
mode:
authorBrian Aker <brian@tangent.org>2011-09-17 12:41:48 -0700
committerBrian Aker <brian@tangent.org>2011-09-17 12:41:48 -0700
commit956d15b5b1f3f3518eb374a3a9e0393e9dacd3b6 (patch)
tree75fdf00c6006c0259136952a0e994df764de8398 /clients/client_options.h
parentf652bb663f0499f5447d0358670464a669a199f0 (diff)
downloadlibmemcached-956d15b5b1f3f3518eb374a3a9e0393e9dacd3b6.tar.gz
Improve tesing of command line apps
Diffstat (limited to 'clients/client_options.h')
-rw-r--r--clients/client_options.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/clients/client_options.h b/clients/client_options.h
index 70329051..57aefd2b 100644
--- a/clients/client_options.h
+++ b/clients/client_options.h
@@ -9,12 +9,11 @@
*
*/
-#ifndef __CLIENT_OPTIONS_H__
-#define __CLIENT_OPTIONS_H__
+#pragma once
typedef struct memcached_help_text_st memcached_help_text_st;
-typedef enum {
+enum memcached_options {
OPT_SERVERS= 's',
OPT_VERSION= 'V',
OPT_HELP= 'h',
@@ -39,7 +38,6 @@ typedef enum {
OPT_USERNAME,
OPT_PASSWD,
OPT_STAT_ARGS,
+ OPT_QUIET,
OPT_FILE= 'f'
-} memcached_options;
-
-#endif /* CLIENT_OPTIONS */
+};