mirror of
				https://github.com/cookiengineer/audacity
				synced 2025-11-03 23:53:55 +01: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
 |