summaryrefslogtreecommitdiff
path: root/examples/detect.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/detect.c')
-rw-r--r--examples/detect.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/detect.c b/examples/detect.c
index 393fd2c..8dba1b4 100644
--- a/examples/detect.c
+++ b/examples/detect.c
@@ -64,6 +64,21 @@ int main (int argc, char **argv)
LIBMTP_error_number_t err;
int i;
+ int opt;
+ extern int optind;
+ extern char *optarg;
+
+ while ((opt = getopt(argc, argv, "d")) != -1 ) {
+ switch (opt) {
+ case 'd':
+ LIBMTP_Set_Debug(9);
+ break;
+ }
+ }
+
+ argc -= optind;
+ argv += optind;
+
LIBMTP_Init();
fprintf(stdout, "libmtp version: " LIBMTP_VERSION_STRING "\n\n");