diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-09-28 08:32:34 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-09-28 08:32:34 +0000 |
| commit | 3e62f8d9b73f712f82e6d3d186f03a3e581bc465 (patch) | |
| tree | f58a87f0e972811123da8a2f8ebe4ae1aef9ad64 /src/bin/jp3d/getopt.h | |
| parent | 028720c9ec1a330728a2eb6fcd5faadef99cdeb9 (diff) | |
[trunk] FolderReorgProposal task: add JP3D
Update issue 177
Diffstat (limited to 'src/bin/jp3d/getopt.h')
| -rwxr-xr-x | src/bin/jp3d/getopt.h | 14 |
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_ */
|
