Changeset 930 for trunk/src/emx/include
- Timestamp:
- Jan 2, 2004, 8:37:04 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/emx/getopt.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r929 r930 8 8 #endif 9 9 10 extern char * optarg; /* argument of current option */11 extern int optind; /* index of next argument; default=0: initialize */12 extern int opterr; /* 0=disable error messages; default=1: enable */13 extern int optopt; /* option character which caused the error */14 extern char * optswchar; /* characters introducing options; default="-" */10 extern char *_emx_optarg; /* argument of current option */ 11 extern int _emx_optind; /* index of next argument; default=0: initialize */ 12 extern int _emx_opterr; /* 0=disable error messages; default=1: enable */ 13 extern int _emx_optopt; /* option character which caused the error */ 14 extern char *_emx_optswchar; /* characters introducing options; default="-" */ 15 15 16 16 extern enum _optmode … … 19 19 GETOPT_ANY, /* move non-options to the end */ 20 20 GETOPT_KEEP /* return options in order */ 21 } optmode;21 } _emx_optmode; 22 22 23 23 … … 25 25 array pointed to. */ 26 26 27 int getopt (int, char **, __const__ char *);27 int _emx_getopt (int, char **, __const__ char *); 28 28 29 29 #if defined (__cplusplus) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.