summaryrefslogtreecommitdiff
path: root/src/bin/jp3d/getopt.h
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2012-09-28 08:32:34 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2012-09-28 08:32:34 +0000
commit3e62f8d9b73f712f82e6d3d186f03a3e581bc465 (patch)
treef58a87f0e972811123da8a2f8ebe4ae1aef9ad64 /src/bin/jp3d/getopt.h
parent028720c9ec1a330728a2eb6fcd5faadef99cdeb9 (diff)
[trunk] FolderReorgProposal task: add JP3D
Update issue 177
Diffstat (limited to 'src/bin/jp3d/getopt.h')
-rwxr-xr-xsrc/bin/jp3d/getopt.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/bin/jp3d/getopt.h b/src/bin/jp3d/getopt.h
new file mode 100755
index 00000000..23299d1b
--- /dev/null
+++ b/src/bin/jp3d/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_ */