File: test_sections.c

package info (click to toggle)
gengetopt 2.22.6%2Bdfsg0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 5,720 kB
  • ctags: 2,363
  • sloc: cpp: 14,709; sh: 11,845; ansic: 8,030; makefile: 689; yacc: 514; lex: 171; sed: 3
file content (25 lines) | stat: -rw-r--r-- 408 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
/* test_sections.c test */

/* test sections printed by --help */

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

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

#include "test_sections_cmd.h"

static struct gengetopt_args_info args_info;

int
main (int argc, char **argv)
{ 
  if (test_sections_cmd_parser (argc, argv, &args_info) != 0)
    exit(1) ;

  test_sections_cmd_parser_free (&args_info);

  return 0;
}