/* $OpenBSD: getopt.h,v 1.2 2008/06/26 05:42:04 ray Exp $ */1/* $NetBSD: getopt.h,v 1.4 2000/07/07 10:43:54 ad Exp $ */23/*-4* Copyright (c) 2000 The NetBSD Foundation, Inc.5* All rights reserved.6*7* This code is derived from software contributed to The NetBSD Foundation8* by Dieter Baron and Thomas Klausner.9*10* Redistribution and use in source and binary forms, with or without11* modification, are permitted provided that the following conditions12* are met:13* 1. Redistributions of source code must retain the above copyright14* notice, this list of conditions and the following disclaimer.15* 2. Redistributions in binary form must reproduce the above copyright16* notice, this list of conditions and the following disclaimer in the17* documentation and/or other materials provided with the distribution.18*19* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS20* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED21* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR22* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS23* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR24* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF25* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS26* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN27* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)28* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE29* POSSIBILITY OF SUCH DAMAGE.30*/3132#ifndef _GETOPT_H_33#define _GETOPT_H_3435/*36* GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions37*/38#define no_argument 039#define required_argument 140#define optional_argument 24142#ifdef __cplusplus43extern "C" {44#endif4546struct option {47/* name of long option */48const char *name;49/*50* one of no_argument, required_argument, and optional_argument:51* whether option takes an argument52*/53int has_arg;54/* if not NULL, set *flag to val when option found */55int *flag;56/* if flag not NULL, value to set *flag to; else return value */57int val;58};5960int getopt_long(int, char * const *, const char *,61const struct option *, int *);62int getopt_long_only(int, char * const *, const char *,63const struct option *, int *);64#ifndef _GETOPT_DEFINED_65#define _GETOPT_DEFINED_66int getopt(int, char * const *, const char *);67int getsubopt(char **, char * const *, char **);6869extern char *optarg; /* getopt(3) external variables */70extern int opterr;71extern int optind;72extern int optopt;73extern int optreset;74extern char *suboptarg; /* getsubopt(3) external variable */75#endif7677#ifdef __cplusplus78}79#endif8081#endif /* !_GETOPT_H_ */828384