2013-03-25 14:23:07 +00:00
|
|
|
/*
|
2020-01-28 14:32:34 +00:00
|
|
|
* (C) Copyright 2005- ECMWF.
|
2013-03-25 14:23:07 +00:00
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WINGETOPT_H
|
|
|
|
#define WINGETOPT_H
|
|
|
|
|
2015-02-18 17:36:29 +00:00
|
|
|
#include "eccodes_windef.h"
|
2013-04-09 10:46:01 +00:00
|
|
|
|
2015-02-18 17:42:02 +00:00
|
|
|
#ifdef ECCODES_ON_WINDOWS
|
2013-03-25 14:23:07 +00:00
|
|
|
extern int optind, opterr;
|
2020-01-29 10:27:59 +00:00
|
|
|
extern char* optarg;
|
|
|
|
int getopt(int argc, char* argv[], const char* optstring);
|
2013-03-25 14:23:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|