mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 14:18:53 +02:00
22 lines
291 B
C
22 lines
291 B
C
/*
|
|
* Public Domain getopt header
|
|
*
|
|
*/
|
|
|
|
#ifndef RAPTOR_GETOPT_H
|
|
#define RAPTOR_GETOPT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int getopt(int argc, char * const argv[], const char *optstring);
|
|
extern char *optarg;
|
|
extern int optind, opterr, optopt;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|