| /* | |
| * Portions Copyright (c) 1987, 1993, 1994 | |
| * The Regents of the University of California. All rights reserved. | |
| * | |
| * Portions Copyright (c) 2003-2024, PostgreSQL Global Development Group | |
| * | |
| * src/include/getopt_long.h | |
| */ | |
| struct option | |
| { | |
| const char *name; | |
| int has_arg; | |
| int *flag; | |
| int val; | |
| }; | |
| extern int getopt_long(int argc, char *const argv[], | |
| const char *optstring, | |
| const struct option *longopts, int *longindex); | |