mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
24 lines
481 B
C
24 lines
481 B
C
/* Public domain. */
|
|
|
|
#ifndef SGETOPT_H
|
|
#define SGETOPT_H
|
|
|
|
#ifndef SGETOPTNOSHORT
|
|
#define getopt sgetoptmine
|
|
#define optarg subgetoptarg
|
|
#define optind subgetoptind
|
|
#define optpos subgetoptpos
|
|
#define opterr sgetopterr
|
|
#define optproblem subgetoptproblem
|
|
#define optprogname sgetoptprogname
|
|
#define opteof subgetoptdone
|
|
#endif
|
|
|
|
#include "subgetopt.h"
|
|
|
|
extern int sgetoptmine(int,const char *const *,const char *);
|
|
extern int sgetopterr;
|
|
extern const char *sgetoptprogname;
|
|
|
|
#endif
|