diff options
| author | Sebastien Lugan <slugan@users.noreply.github.com> | 2003-11-27 10:07:31 +0000 |
|---|---|---|
| committer | Sebastien Lugan <slugan@users.noreply.github.com> | 2003-11-27 10:07:31 +0000 |
| commit | a8de4a648a91f5416c6e4bcc2b615ee3aafcec6a (patch) | |
| tree | 42b52f29c0f742c2dea806a37f5a47480ffee2cc /codec/compat/getopt.h | |
| parent | cf0323202120c117d37fefeb01fbfc9a2920d80b (diff) | |
Initial revision
Diffstat (limited to 'codec/compat/getopt.h')
| -rw-r--r-- | codec/compat/getopt.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/codec/compat/getopt.h b/codec/compat/getopt.h new file mode 100644 index 00000000..f2cf1fad --- /dev/null +++ b/codec/compat/getopt.h @@ -0,0 +1,14 @@ +/* last review : october 29th, 2002 */ + +#ifndef _GETOPT_H_ +#define _GETOPT_H_ + +extern int opterr; +extern int optind; +extern int optopt; +extern int optreset; +extern char *optarg; + +extern int getopt(int nargc, char *const *nargv, const char *ostr); + +#endif /* _GETOPT_H_ */ |
