1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00
audacity/lib-src/libraptor/utils/raptor_getopt.h
2010-01-24 09:19:39 +00:00

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