Skip to content

Commit

Permalink
Added missing function comments to options.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Feb 29, 2016
1 parent 2890b70 commit 38d28e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ struct option long_opts[] = {
{0, 0, 0, 0}
};

/* Command line help. */
void
cmd_help (void)
{
Expand Down Expand Up @@ -245,6 +246,8 @@ cmd_help (void)
}
/* *INDENT-ON* */

/* Determine if the '--no-global-config' command line option needs to be
* enabled or not. */
void
verify_global_config (int argc, char **argv)
{
Expand Down Expand Up @@ -274,6 +277,7 @@ verify_global_config (int argc, char **argv)
optind = 1;
}

/* Read the user's supplied command line options. */
void
read_option_args (int argc, char **argv)
{
Expand Down

0 comments on commit 38d28e1

Please sign in to comment.