File: pgpewrap.c

package info (click to toggle)
mutt 1.5.20-9%2Bsqueeze4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 15,064 kB
  • ctags: 5,313
  • sloc: ansic: 79,584; sh: 4,606; perl: 958; makefile: 720; yacc: 318; awk: 17
file content (61 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (5)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * C version by Wessel Dankers <wsl@fruit.eu.org>
 *
 * This code is in the public domain.
 *
 */

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

void print_usage(const char *progname) {
	fprintf(stderr, "Command line usage: %s [flags] -- prefix [recipients]\n", progname);
	exit(1);
}

int main(int argc, char **argv) {
	char **opts, **opt, *pfx;
	int i;

	if (argc <= 1) {
		print_usage(argv[0]);
        }

	opts = malloc((2 * argc + 1) * sizeof (* opts));	/* __MEM_CHECKED__ */
	if(!opts) {
		perror(argv[0]);
		exit(2);
	}

	if (argc < 2)
	{
	  fprintf (stderr,
		   "Command line usage: %s [flags] -- prefix [recipients]\n",
		   argv[0]);
	  return 1;
	}

	opt = opts;
	*opt++ = argv[1];
	pfx = NULL;

	for(i = 2; i < argc; ) {
		if(!strcmp(argv[i], "--")) {
			i += 2;
			if(i > argc) {
				print_usage(argv[0]);
			}
			pfx = argv[i-1];
		}
		if(pfx)
			*opt++ = pfx;
		*opt++ = argv[i++];
	}
	*opt = NULL;

	execvp(opts[0], opts);
	perror(argv[0]);
	return 2;
}