blob: 0875828cf774f97390cc2b2508124f651e7d77e3 (
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 "option_table.h"
#include "gen-manpage-opts-helper.h"
int main(void)
{
gen_manpage_opts_helper(__options);
return 0;
}
|