src/bin: apply clang-format
[awesomized/libmemcached] / src / bin / common / client_options.h
index 16ce4beda0c2bbb28f45e83c12001f0463fe8e9c..a3e38252205be11d53054f92f3fbd783e2db0d68 100644 (file)
@@ -1,26 +1,30 @@
-/* LibMemcached
- * Copyright (C) 2006-2009 Brian Aker
- * All rights reserved.
- *
- * Use and distribution licensed under the BSD license.  See
- * the COPYING file in the parent directory for full text.
- *
- * Summary:
- *
- */
+/*
+    +--------------------------------------------------------------------+
+    | libmemcached - C/C++ Client Library for memcached                  |
+    +--------------------------------------------------------------------+
+    | Redistribution and use in source and binary forms, with or without |
+    | modification, are permitted under the terms of the BSD license.    |
+    | You should have received a copy of the license in a bundled file   |
+    | named LICENSE; in case you did not receive a copy you can review   |
+    | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
+    +--------------------------------------------------------------------+
+    | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
+    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    +--------------------------------------------------------------------+
+*/
 
 #pragma once
 
 typedef struct memcached_help_text_st memcached_help_text_st;
 
 enum memcached_options {
-  OPT_SERVERS= 's',
-  OPT_VERSION= 'V',
-  OPT_HELP= 'h',
-  OPT_VERBOSE= 'v',
-  OPT_DEBUG= 'd',
-  OPT_ANALYZE= 'a',
-  OPT_FLAG= 257,
+  OPT_SERVERS = 's',
+  OPT_VERSION = 'V',
+  OPT_HELP = 'h',
+  OPT_VERBOSE = 'v',
+  OPT_DEBUG = 'd',
+  OPT_ANALYZE = 'a',
+  OPT_FLAG = 257,
   OPT_EXPIRE,
   OPT_SET,
   OPT_REPLACE,
@@ -41,5 +45,5 @@ enum memcached_options {
   OPT_STAT_ARGS,
   OPT_SERVER_VERSION,
   OPT_QUIET,
-  OPT_FILE= 'f'
+  OPT_FILE = 'f'
 };