aboutsummaryrefslogtreecommitdiff
path: root/src/util/getopt_helpers.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
committerChristian Grothoff <christian@grothoff.org>2011-08-15 21:54:06 +0000
commit5746309cb4be2073d550ad7a6885e918631dbc38 (patch)
tree89455bc4aadf977816b38df13f990372cd81d71a /src/util/getopt_helpers.c
parent6fd3e715cae09fa6e657c96f1c6f9711ee51f42f (diff)
downloadgnunet-5746309cb4be2073d550ad7a6885e918631dbc38.tar.gz
gnunet-5746309cb4be2073d550ad7a6885e918631dbc38.zip
indentation
Diffstat (limited to 'src/util/getopt_helpers.c')
-rw-r--r--src/util/getopt_helpers.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/util/getopt_helpers.c b/src/util/getopt_helpers.c
index aa85bf536..d0c8c0e6a 100644
--- a/src/util/getopt_helpers.c
+++ b/src/util/getopt_helpers.c
@@ -166,9 +166,8 @@ OUTER:
166 * @return GNUNET_OK 166 * @return GNUNET_OK
167 */ 167 */
168int 168int
169GNUNET_GETOPT_increment_value (struct 169GNUNET_GETOPT_increment_value (struct GNUNET_GETOPT_CommandLineProcessorContext
170 GNUNET_GETOPT_CommandLineProcessorContext *ctx, 170 *ctx, void *scls, const char *option,
171 void *scls, const char *option,
172 const char *value) 171 const char *value)
173{ 172{
174 int *val = scls; 173 int *val = scls;
@@ -218,9 +217,8 @@ GNUNET_GETOPT_set_one (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
218 * @return GNUNET_OK 217 * @return GNUNET_OK
219 */ 218 */
220int 219int
221GNUNET_GETOPT_set_string (struct GNUNET_GETOPT_CommandLineProcessorContext 220GNUNET_GETOPT_set_string (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
222 *ctx, void *scls, const char *option, 221 void *scls, const char *option, const char *value)
223 const char *value)
224{ 222{
225 char **val = scls; 223 char **val = scls;
226 224
@@ -246,9 +244,8 @@ GNUNET_GETOPT_set_string (struct GNUNET_GETOPT_CommandLineProcessorContext
246 * @return GNUNET_OK if parsing the value worked 244 * @return GNUNET_OK if parsing the value worked
247 */ 245 */
248int 246int
249GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext 247GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
250 *ctx, void *scls, const char *option, 248 void *scls, const char *option, const char *value)
251 const char *value)
252{ 249{
253 unsigned long long *val = scls; 250 unsigned long long *val = scls;
254 251