2014-09-19 18:42:07 +03:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Copyright 2014 Perttu Ahola <celeron55@gmail.com>
|
2014-09-17 12:21:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Perttu Ahola, celeron55@gmail.com (all rights reserved)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GETOPT_H__
|
|
|
|
#define __GETOPT_H__
|
|
|
|
|
|
|
|
extern const char *c55_optarg;
|
|
|
|
//extern int c55_optind;
|
|
|
|
|
|
|
|
extern int c55_argi;
|
|
|
|
extern const char *c55_cp;
|
|
|
|
|
|
|
|
int c55_getopt(int argc, char *argv[], const char *argspec);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-09-24 14:53:57 +03:00
|
|
|
// vim: set noet ts=4 sw=4:
|