summaryrefslogtreecommitdiff
path: root/src/htshash.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2012-03-19 12:55:42 +0000
committerXavier Roche <xroche@users.noreply.github.com>2012-03-19 12:55:42 +0000
commit844ecc37072d515513177c65a8c9dc35c9cdfc1a (patch)
tree733b1fe039c0c37095a594b66d5076f3f5a0153d /src/htshash.c
parent25adbdabb47499fe641c7bd9595024ff82667058 (diff)
httrack 3.33.16
Diffstat (limited to 'src/htshash.c')
-rw-r--r--src/htshash.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/htshash.c b/src/htshash.c
index 3cbdb5f..38a2d64 100644
--- a/src/htshash.c
+++ b/src/htshash.c
@@ -35,15 +35,15 @@ Please visit our Website: http://www.httrack.com
/* Author: Xavier Roche */
/* ------------------------------------------------------------ */
+/* Internal engine bytecode */
+#define HTS_INTERNAL_BYTECODE
+
#include "htshash.h"
/* specific definitions */
#include "htsbase.h"
#include "htsglobal.h"
#include "htsmd5.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
/* END specific definitions */
/* Specific macros */
@@ -63,7 +63,7 @@ Please visit our Website: http://www.httrack.com
// recherche dans la table selon nom1,nom2 et le no d'enregistrement
// retour: position ou -1 si non trouvé
int hash_read(hash_struct* hash,char* nom1,char* nom2,int type,int normalized) {
- char normfil_[HTS_URLMAXSIZE*2];
+ char BIGSTK normfil_[HTS_URLMAXSIZE*2];
char* normfil;
char* normadr;
unsigned int cle;
@@ -199,7 +199,7 @@ int hash_read(hash_struct* hash,char* nom1,char* nom2,int type,int normalized) {
// enregistrement lien lpos dans les 3 tables hash1..3
void hash_write(hash_struct* hash,int lpos,int normalized) {
- char normfil_[HTS_URLMAXSIZE*2];
+ char BIGSTK normfil_[HTS_URLMAXSIZE*2];
char* normfil;
unsigned int cle;
int pos;