1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00
audacity/lib-src/redland/utils/rdfproc_getopt.h
2010-01-24 09:19:39 +00:00

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