mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 17:49:45 +02:00
14 lines
224 B
C
14 lines
224 B
C
/*
|
|
* Public Domain getopt header
|
|
*
|
|
*/
|
|
|
|
#ifndef RDFPROC_GETOPT_H
|
|
#define RDFPROC_GETOPT_H
|
|
|
|
int getopt(int argc, char * const argv[], const char *optstring);
|
|
extern char *optarg;
|
|
extern int optind, opterr, optopt;
|
|
|
|
#endif
|