]>
Commit | Line | Data |
---|---|---|
fe81b478 | 1 | /* |
2 | getopt.h 1.2 2003/09/17 16:17:59 | |
3 | ||
4 | Copyright (C) 1998, 2003 by David A. Hinds -- All Rights Reserved | |
5 | ||
6 | This file is part of ASPEX. | |
7 | ||
8 | ASPEX is free software; you can redistribute it and/or modify it | |
9 | under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
12 | ||
13 | ASPEX is distributed in the hope that it will be useful, but | |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with ASPEX; if not, write to the Free Software Foundation, | |
20 | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 | */ | |
22 | ||
23 | extern char *optarg; | |
f46c3663 | 24 | extern int optind, opterr, optopt, pos; |
fe81b478 | 25 | int getopt(int argc, char *argv[], const char *optstring); |