File: test_unnamed.c

package info (click to toggle)
gengetopt 2.23%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 5,032 kB
  • sloc: cpp: 14,765; ansic: 8,232; sh: 4,782; makefile: 754; yacc: 514; lex: 179; sed: 3
file content (23 lines) | stat: -rw-r--r-- 362 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* test_unnamed.c test */

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

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

#include "test_unnamed_cmd.h"

static struct gengetopt_args_info args_info;

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

	test_unnamed_cmd_parser_free(&args_info);

	return 0;
}