diff options
| author | Antonin Descampe <antonin@gmail.com> | 2006-10-30 15:32:50 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2006-10-30 15:32:50 +0000 |
| commit | c822e3537db7e964678191fe149e1c8df9566966 (patch) | |
| tree | d8b42ebe67fc1a67d42a53ae8c0957f783a72050 /codec/getopt.h | |
initial release of jp3d library and codec
Diffstat (limited to 'codec/getopt.h')
| -rwxr-xr-x | codec/getopt.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/codec/getopt.h b/codec/getopt.h new file mode 100755 index 00000000..23299d1b --- /dev/null +++ b/codec/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_ */
|
