VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/Etherboot-src/util/getopt.h@ 26594

最後變更 在這個檔案從26594是 1,由 vboxsync 提交於 55 年 前

import

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 977 位元組
 
1/* getopt (emx+gcc) */
2
3#ifndef _GETOPT_H
4#define _GETOPT_H
5
6#if defined (__cplusplus)
7extern "C" {
8#endif
9
10extern char *optarg; /* argument of current option */
11extern int optind; /* index of next argument; default=0: initialize */
12extern int opterr; /* 0=disable error messages; default=1: enable */
13extern int optopt; /* option character which caused the error */
14extern char *optswchar; /* characters introducing options; default="-" */
15
16extern enum _optmode
17{
18 GETOPT_UNIX, /* options at start of argument list (default) */
19 GETOPT_ANY, /* move non-options to the end */
20 GETOPT_KEEP /* return options in order */
21} optmode;
22
23
24/* Note: The 2nd argument is not const as GETOPT_ANY reorders the
25 array pointed to. */
26
27int getopt (int, char **, __const__ char *);
28
29#if defined (__cplusplus)
30}
31#endif
32
33#endif /* not _GETOPT_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette