File: getopt.h

package info (click to toggle)
dnstracer 1.4-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 396 kB
  • ctags: 140
  • sloc: sh: 3,018; ansic: 1,096; makefile: 43
file content (34 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// $Id: getopt.h,v 1.1 2002/01/25 00:38:19 mavetju Exp $
//
// Only used in the win32-version of dnstracer.
// Supplied by Mike Black <mblack@csihq.com>
//

/*
 *  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