xref: /freebsd/contrib/pkgconf/cli/getopt_long.h (revision d15f2551b25f79ddcbe289faa95e655100b952da)
1 /*	$NetBSD: getopt.h,v 1.4 2000/07/07 10:43:54 ad Exp $	*/
2 /*	$FreeBSD$ */
3 
4 /*-
5  * SPDX-License-Identifier: BSD-2-Clause
6  *
7  * Copyright (c) 2000 The NetBSD Foundation, Inc.
8  * All rights reserved.
9  *
10  * This code is derived from software contributed to The NetBSD Foundation
11  * by Dieter Baron and Thomas Klausner.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
24  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
26  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #ifndef _GETOPT_LONG_H_
36 #define _GETOPT_LONG_H_
37 
38 #include <stdint.h>
39 
40 /*
41  * GNU-like getopt_long()/getopt_long_only() with 4.4BSD optreset extension.
42  * getopt() is declared here too for GNU programs.
43  */
44 #define no_argument        0
45 #define required_argument  1
46 #define optional_argument  2
47 
48 struct pkg_option {
49 	/* name of long option */
50 	const char *name;
51 	/*
52 	 * one of no_argument, required_argument, and optional_argument:
53 	 * whether option takes an argument
54 	 */
55 	int has_arg;
56 	/* if not NULL, set *flag to val when option found */
57 	uint64_t *flag;
58 	/* if flag not NULL, value to set *flag to; else return value */
59 	uint64_t val;
60 };
61 
62 int	pkg_getopt_long(int, char * const *, const char *,
63 	const struct pkg_option *, int *);
64 int	pkg_getopt_long_only(int, char * const *, const char *,
65 	const struct pkg_option *, int *);
66 int	pkg_getopt(int, char * const [], const char *);
67 
68 extern char *pkg_optarg;			/* getopt(3) external variables */
69 extern int pkg_optind, pkg_opterr, pkg_optopt;
70 extern int pkg_optreset;			/* getopt(3) external variable */
71 
72 #endif
73