summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/h1b.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/analysis/disass/h1b.c')
-rw-r--r--tests/analysis/disass/h1b.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/analysis/disass/h1b.c b/tests/analysis/disass/h1b.c
new file mode 100644
index 0000000..f29033f
--- /dev/null
+++ b/tests/analysis/disass/h1b.c
@@ -0,0 +1,25 @@
+
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+ int i;
+
+ for (i = 0; i < argc; i++)
+ {
+ printf("arg[%d]: %s\n", i, argv[i]);
+
+ if (argc > 2)
+ printf("!");
+ else
+ printf("#");
+
+ printf(".");
+
+ }
+
+ printf("Hello\n");
+
+ return 0;
+
+}