aboutsummaryrefslogtreecommitdiff
path: root/src/getopt.h
diff options
context:
space:
mode:
authortissoire2007-12-20 13:33:47 +0000
committertissoire2007-12-20 13:33:47 +0000
commit98f62bc78586332320db02686c2453d3dd3a6f31 (patch)
tree438bcaaf3851236dfa1859c1e982853c8c911175 /src/getopt.h
downloadivypointer-98f62bc78586332320db02686c2453d3dd3a6f31.zip
ivypointer-98f62bc78586332320db02686c2453d3dd3a6f31.tar.gz
ivypointer-98f62bc78586332320db02686c2453d3dd3a6f31.tar.bz2
ivypointer-98f62bc78586332320db02686c2453d3dd3a6f31.tar.xz
initial release of ivypointer
Diffstat (limited to 'src/getopt.h')
-rw-r--r--src/getopt.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/getopt.h b/src/getopt.h
new file mode 100644
index 0000000..d52543f
--- /dev/null
+++ b/src/getopt.h
@@ -0,0 +1,16 @@
+#ifndef __GETOPT_H_
+#define __GETOPT_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int optind ;
+extern char *optarg ;
+extern int getopt (int argc, char **argv, char *optstring) ;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif