File: default_values.c

package info (click to toggle)
gengetopt 2.22.6%2Bdfsg0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,732 kB
  • sloc: cpp: 14,709; sh: 11,845; ansic: 8,030; makefile: 689; yacc: 514; lex: 171; sed: 3
file content (35 lines) | stat: -rw-r--r-- 934 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* default_values.c test */

/* it will use default values */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>
#include <stdio.h>

#include "default_values_cmd.h"

int
main (int argc, char **argv)
{  
  struct gengetopt_args_info args_info;

  if (default_values_cmd_parser (argc, argv, &args_info) != 0)
    exit(1) ;

  printf ("foo-opt is given: %d\n", args_info.foo_opt_given);
  printf ("bar-opt is given: %d\n", args_info.bar_opt_given);
  printf ("Value of foo: %d\n", args_info.foo_arg);
  printf ("Value of bar: %s\n", args_info.bar_arg);
  printf ("Value of foo-opt: %d\n", args_info.foo_opt_arg);
  printf ("Value of bar-opt: %s\n", args_info.bar_opt_arg);
  printf ("Value of foofloat: %f\n", args_info.foofloat_arg);
  printf ("Value of foodouble: %lf\n", args_info.foodouble_arg);
  printf ("Value of PI: %16.10f\n", args_info.pi_arg);

  default_values_cmd_parser_free (&args_info);

  return 0;
}