summaryrefslogtreecommitdiff
path: root/gen-manpage-opts.c
blob: 00d0b9fab8d318254d3819395a918f528de5cf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Prints the option help in a form that is suitable to include in the manpage.
 */
#include <stdio.h>
#include <ctype.h>
#include <string.h>

#include "gen-manpage-opts-helper.h"
#include "option_table.h"

int main(void)
{
    gen_manpage_opts_helper(__options);
    return 0;
}