aboutsummaryrefslogtreecommitdiff
path: root/src/testip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testip.c')
-rw-r--r--src/testip.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testip.c b/src/testip.c
new file mode 100644
index 0000000..44f1086
--- /dev/null
+++ b/src/testip.c
@@ -0,0 +1,10 @@
+
+#include <stdio.h>
+
+extern unsigned char * __fastcall__ new_format_ip (void *);
+
+void main(void) {
+ char ip[4] = { 0xc0, 0xa8, 0x00, 0x01 };
+ puts(new_format_ip(ip));
+HANG: goto HANG;
+}