Path: blob/main/contrib/libfido2/openbsd-compat/getopt.h
39536 views
/* $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 24142struct option {43/* name of long option */44const char *name;45/*46* one of no_argument, required_argument, and optional_argument:47* whether option takes an argument48*/49int has_arg;50/* if not NULL, set *flag to val when option found */51int *flag;52/* if flag not NULL, value to set *flag to; else return value */53int val;54};5556int getopt_long(int, char * const *, const char *,57const struct option *, int *);58int getopt_long_only(int, char * const *, const char *,59const struct option *, int *);60#ifndef _GETOPT_DEFINED_61#define _GETOPT_DEFINED_62int getopt(int, char * const *, const char *);63int getsubopt(char **, char * const *, char **);6465extern char *optarg; /* getopt(3) external variables */66extern int opterr;67extern int optind;68extern int optopt;69extern int optreset;70extern char *suboptarg; /* getsubopt(3) external variable */71#endif7273#endif /* !_GETOPT_H_ */747576