blob: ca40c4ee4f81f9482d5ba19d6593b532b7a12e6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
--- a/webfuzzer.h
+++ b/webfuzzer.h
@@ -30,11 +30,11 @@
/**
** GLOBAL HASHTABLES
**/
-struct node * HTlinks[ HT_SIZE ];
-struct node * HTforms[ HT_SIZE ];
-struct node * HTusers[ HT_SIZE ];
-struct node * HTtools[ HT_SIZE ];
-struct node * HTcookies[ HT_SIZE ];
+extern struct node * HTlinks[ HT_SIZE ];
+extern struct node * HTforms[ HT_SIZE ];
+extern struct node * HTusers[ HT_SIZE ];
+extern struct node * HTtools[ HT_SIZE ];
+extern struct node * HTcookies[ HT_SIZE ];
#define VERSION "0.2.0"
#define BANNER GREEN "Webfuzzer " DEF VERSION " (c) gunzip"
--- a/webfuzzer.c
+++ b/webfuzzer.c
@@ -29,6 +29,15 @@
#include "technic.h"
/**
+ ** GLOBAL HASHTABLES
+ **/
+struct node * HTlinks[ HT_SIZE ];
+struct node * HTforms[ HT_SIZE ];
+struct node * HTusers[ HT_SIZE ];
+struct node * HTtools[ HT_SIZE ];
+struct node * HTcookies[ HT_SIZE ];
+
+/**
** PROTOTYPES
**/
|