summaryrefslogtreecommitdiff
path: root/protocols/Telegram/docs/tgl/wingetopt.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2016-03-12 17:48:57 +0000
committerKirill Volinsky <mataes2007@gmail.com>2016-03-12 17:48:57 +0000
commit534db770dbe8c358ea267df20145e9793fb0275a (patch)
tree66989fb4e5511b4efe5652cf5312ac4f160bfd01 /protocols/Telegram/docs/tgl/wingetopt.h
parent461f53bf697335fabdc82c6c9143e6020de4f022 (diff)
tgl inside telegram
git-svn-id: http://svn.miranda-ng.org/main/trunk@16471 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Telegram/docs/tgl/wingetopt.h')
-rw-r--r--protocols/Telegram/docs/tgl/wingetopt.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/protocols/Telegram/docs/tgl/wingetopt.h b/protocols/Telegram/docs/tgl/wingetopt.h
new file mode 100644
index 0000000000..4372c66011
--- /dev/null
+++ b/protocols/Telegram/docs/tgl/wingetopt.h
@@ -0,0 +1,32 @@
+/*
+POSIX getopt for Windows
+
+AT&T Public License
+
+Code given out at the 1985 UNIFORUM conference in Dallas.
+*/
+
+#ifdef __GNUC__
+#include <getopt.h>
+#endif
+#ifndef __GNUC__
+
+#ifndef _WINGETOPT_H_
+#define _WINGETOPT_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ extern int opterr;
+ extern int optind;
+ extern int optopt;
+ extern char *optarg;
+ extern int getopt(int argc, char **argv, char *opts);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _GETOPT_H_ */
+#endif /* __GNUC__ */ \ No newline at end of file