From 2973d0c78e9b8eed3c5af239927c6bd36af64604 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 13 Mar 2019 02:50:42 -0400 Subject: initial commit --- src/testip.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/testip.c (limited to 'src/testip.c') 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 + +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; +} -- cgit v1.2.3