forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgpewrap.c
65 lines (57 loc) · 1.05 KB
/
pgpewrap.c
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
62
63
64
65
/**
* @file
* Standalone tool to manipulate a program's command line
*
* C version by Wessel Dankers <[email protected]>
*
* This code is in the public domain.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static 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 = NULL, **opt = NULL;
char *pfx = NULL;
if (argc < 2)
{
print_usage(argv[0]);
}
opts = malloc((2 * argc + 1) * sizeof(*opts));
if (!opts)
{
perror(argv[0]);
exit(2);
}
opt = opts;
*opt++ = argv[1];
pfx = NULL;
for (int i = 2; i < argc;)
{
if (strcmp(argv[i], "--") == 0)
{
i += 2;
if (i > argc)
{
free(opts);
print_usage(argv[0]);
}
pfx = argv[i - 1];
}
if (pfx)
*opt++ = pfx;
*opt++ = argv[i++];
}
*opt = NULL;
execvp(opts[0], opts);
perror(argv[0]);
free(opts);
return 2;
}