home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2006 October
/
PCpro_2006_10.ISO
/
files
/
wininside
/
ubcd
/
ubcd34-basic.exe
/
ubcd34-basic.iso
/
dosapps
/
fips
/
source
/
getopt.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-12-21
|
383 b
|
30 lines
/*
* $Header$
*
* Copyright (C) 1994 Arno Schaefer
*
* AU: Prototypen und externe Variablen fuer getopt ()
*
* PO: ANSI C
*/
#ifndef GETOPT_H
#define GETOPT_H
#ifdef __cplusplus
extern "C" {
#endif
extern char *optarg;
extern int optind;
extern int opterr;
extern int optopt;
int getopt (int argc, char *argv[], char *optstring);
#ifdef __cplusplus
}
#endif
#endif