aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_getopt_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-08 19:00:19 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-08 19:00:19 +0000
commitfe947a9704bed14c2fc74b2f2069596fe884cbad (patch)
tree644efdaa37d692b09f8e279bfe5e8b2ebe81448b /src/include/gnunet_getopt_lib.h
parenta8b0ab037820f6a9f405be3855ce8d3ebbd4399b (diff)
downloadgnunet-fe947a9704bed14c2fc74b2f2069596fe884cbad.tar.gz
gnunet-fe947a9704bed14c2fc74b2f2069596fe884cbad.zip
better comments
Diffstat (limited to 'src/include/gnunet_getopt_lib.h')
-rw-r--r--src/include/gnunet_getopt_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_getopt_lib.h b/src/include/gnunet_getopt_lib.h
index 44525e2f2..d5f3d1198 100644
--- a/src/include/gnunet_getopt_lib.h
+++ b/src/include/gnunet_getopt_lib.h
@@ -186,14 +186,14 @@ struct GNUNET_GETOPT_CommandLineOption
186/** 186/**
187 * Parse the command line. 187 * Parse the command line.
188 * 188 *
189 * @param binaryName name of the binary / application with options 189 * @param binaryOptions Name of application with option summary
190 * @param allOptions defined options and handlers 190 * @param allOptions defined options and handlers
191 * @param argc number of arguments 191 * @param argc number of arguments
192 * @param argv actual arguments 192 * @param argv actual arguments
193 * @return index into argv with first non-option 193 * @return index into argv with first non-option
194 * argument, or GNUNET_SYSERR on error 194 * argument, or GNUNET_SYSERR on error
195 */ 195 */
196int GNUNET_GETOPT_run (const char *binaryName, 196int GNUNET_GETOPT_run (const char *binaryOptions,
197 const struct GNUNET_GETOPT_CommandLineOption 197 const struct GNUNET_GETOPT_CommandLineOption
198 *allOptions, unsigned int argc, char *const *argv); 198 *allOptions, unsigned int argc, char *const *argv);
199 199